2022-07-09 05:03:13 +00:00
|
|
|
package static
|
|
|
|
|
|
|
|
import (
|
2022-07-11 04:40:18 +00:00
|
|
|
"embed"
|
|
|
|
"net/http"
|
2022-07-09 05:03:13 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-07-11 04:40:18 +00:00
|
|
|
//go:embed css
|
|
|
|
css embed.FS
|
|
|
|
CSS = http.StripPrefix("/_", http.FileServer(http.FS(css)))
|
2022-07-09 05:03:13 +00:00
|
|
|
|
2022-07-11 04:40:18 +00:00
|
|
|
//go:embed js
|
|
|
|
js embed.FS
|
|
|
|
JS = http.StripPrefix("/_", http.FileServer(http.FS(js)))
|
2022-07-09 05:03:13 +00:00
|
|
|
)
|