feat: linting

This commit is contained in:
2025-03-18 19:02:50 -04:00
parent d8de02f789
commit 267d293927
33 changed files with 621 additions and 560 deletions

View File

@ -111,8 +111,8 @@ func main() {
// Serve GRPC Handlers
api := http.NewServeMux()
api.Handle(withCORS(user.NewAuthHandler(db, env.Key)))
api.Handle(withCORS(user.NewUserHandler(db, env.Key)))
api.Handle(withCORS(item.NewItemHandler(db, env.Key)))
api.Handle(withCORS(user.NewHandler(db, env.Key)))
api.Handle(withCORS(item.NewHandler(db, env.Key)))
// Serve web interface
mux := http.NewServeMux()