2020-10-03 14:35:03 -07:00
|
|
|
package config
|
|
|
|
|
|
|
|
import "path/filepath"
|
|
|
|
|
|
|
|
const (
|
|
|
|
WebRoot = "webroot"
|
|
|
|
PrivateHLSStoragePath = "hls"
|
2020-10-06 23:14:33 -07:00
|
|
|
GeoIPDatabasePath = "data/GeoLite2-City.mmdb"
|
2020-10-13 16:45:52 -07:00
|
|
|
ExtraInfoFile = "data/content.md"
|
2020-10-03 14:35:03 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
PublicHLSStoragePath = filepath.Join(WebRoot, "hls")
|
|
|
|
)
|