This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-05-02 22:49:16 +00:00
|
|
|
package web
|
|
|
|
|
2021-12-17 19:49:32 +00:00
|
|
|
import (
|
|
|
|
_ "embed"
|
|
|
|
"net/http"
|
|
|
|
)
|
2021-05-02 22:49:16 +00:00
|
|
|
|
|
|
|
//go:embed robots.txt
|
|
|
|
var RobotsTxt []byte
|
|
|
|
|
|
|
|
//go:embed security.txt
|
|
|
|
var SecurityTxt []byte
|
2021-12-17 19:49:32 +00:00
|
|
|
|
|
|
|
var StaticHandler = http.FileServer(http.Dir("./web/dist/"))
|