slack-auth-1770277167/services/auth-api/cmd/server/main.go
jordan 45269dc680
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add service component: auth-api
2026-02-05 07:39:35 +00:00

19 lines
415 B
Go

// Package main is the entry point for the auth-api service.
package main
import (
"git.threesix.ai/jordan/slack-auth-1770277167/pkg/app"
"git.threesix.ai/jordan/slack-auth-1770277167/services/auth-api/internal/api"
)
func main() {
// Create application
application := app.New("auth-api", app.WithDefaultPort(8001))
// Register routes
api.RegisterRoutes(application)
// Start server
application.Run()
}