mirror of
https://github.com/Damillora/Shioriko.git
synced 2024-11-25 05:27:32 +00:00
19 lines
224 B
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()
|
||
|
}
|