mirror of
https://github.com/nxshock/promodj.git
synced 2024-11-27 03:01:01 +05:00
16 lines
163 B
Go
16 lines
163 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
"io/fs"
|
||
|
)
|
||
|
|
||
|
//go:embed site/*
|
||
|
var siteFS embed.FS
|
||
|
|
||
|
var stripSiteFS fs.FS
|
||
|
|
||
|
func init() {
|
||
|
stripSiteFS, _ = fs.Sub(siteFS, "site")
|
||
|
}
|