mirror of
https://github.com/go-shiori/shiori.git
synced 2024-11-15 21:55:31 +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
|
|
}
|