// Package main is the entry point for the api service. package main import ( "github.com/jordan/composed3/pkg/app" "github.com/jordan/composed3/services/api/internal/api" ) func main() { // Create application application := app.New("api", app.WithDefaultPort(8001)) // Register routes api.RegisterRoutes(application) // Start server application.Run() }