mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-14 05:05:27 +08:00
13 lines
138 B
Go
13 lines
138 B
Go
// +build dev
|
|
|
|
package webserver
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
var assets = http.Dir("internal/view")
|
|
|
|
func init() {
|
|
developmentMode = true
|
|
}
|