3
0
corteza/server/docs/serve.go
2022-11-14 09:26:39 +01:00

15 lines
157 B
Go

package docs
import (
"embed"
"net/http"
)
//go:embed *.yaml
//go:embed *.html
var docs embed.FS
func GetFS() http.FileSystem {
return http.FS(docs)
}