9 lines
100 B
Go
9 lines
100 B
Go
// / +build !release
|
|
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
const staticFiles = http.Dir("./static")
|