go-sample-webpage/main.go

30 lines
582 B
Go
Raw Normal View History

2021-11-03 01:10:36 +00:00
package main
import (
"embed"
"gin-test/pkg/sample"
2021-11-04 01:14:51 +00:00
"gin-test/pkg/user"
2021-11-08 02:33:36 +00:00
"gin-test/pkg/webpage"
2021-11-03 01:10:36 +00:00
)
// content holds our static web server content.
//go:embed static/* templates/*
var webserver embed.FS
2021-11-08 01:25:36 +00:00
//go:embed database/migrations/*.sql
var migrationFS embed.FS
2021-11-03 01:10:36 +00:00
func main() {
2021-11-08 02:33:36 +00:00
config := webpage.WebPageConfig{
Templates: webserver,
Static: webserver,
Migrations: migrationFS,
Bootstrap: func(config webpage.BootstrapConfig) {
sample.Register(config.Router)
user.Register(config.Router, config.Token, config.UserClient)
2021-11-08 01:25:36 +00:00
},
}
2021-11-08 02:33:36 +00:00
webpage.RunWebApp(config)
2021-11-08 01:25:36 +00:00
}