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