Shioriko/main.go

19 lines
224 B
Go

package main
import (
"embed"
"github.com/Damillora/Shioriko/pkg/app"
)
//go:embed web/static
var staticFiles embed.FS
//go:embed web/template
var templateFiles embed.FS
func main() {
app.Initialize()
app.Start()
}