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