package main import ( "log" "phc/website/model" "phc/website/services/config" "phc/website/services/database" "phc/website/services/server" "phc/website/sl" ) func main() { l := sl.New() cfg := sl.InjectValue(l, config.Slot, &config.Config{ Mode: "production", Host: ":4000", }) sl.InjectValue[database.Database](l, database.Slot, &database.Memory{ Users: []model.User{ { Id: "claire", FullName: "Claire Doe", Nickname: "claire-doe", AuthSources: map[string]model.AuthSource{}, }, { Id: "john", FullName: "John Smith", Nickname: "john-smith", AuthSources: map[string]model.AuthSource{}, }, }, }) srv, err := server.Configure(l) if err != nil { log.Fatal(err) } log.Fatal(srv.Router.Listen(cfg.Host)) }