refactor names and minimize dependencies

This commit is contained in:
Robin Olsen
2026-02-28 22:17:55 +01:00
parent bfeeed5626
commit ba4d3df669
25 changed files with 169 additions and 197 deletions

View File

@@ -10,7 +10,7 @@ import (
)
func main() {
if err := web.NewWeb().Run(context.Background(), models.BaseConfig); err != nil {
if err := web.New().Run(context.Background(), models.BaseConfig); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}