18 lines
302 B
Go
18 lines
302 B
Go
package main
|
|
|
|
import (
|
|
"Crimson-Gatekeeper/internal/database"
|
|
"Crimson-Gatekeeper/internal/route"
|
|
|
|
"github.com/go-spring/spring-core/gs"
|
|
)
|
|
|
|
type Test struct{}
|
|
|
|
func main() {
|
|
gs.Provide(database.GetDataBaseClient)
|
|
gs.Provide(database.GetQuery)
|
|
gs.Provide(route.NewTestBoot).AsRunner()
|
|
gs.Run()
|
|
}
|