// Package main provides the DanceLessonsCoach server entry point // // @title DanceLessonsCoach API // @version 1.0 // @description API for DanceLessonsCoach service providing greeting functionality // @termsOfService http://swagger.io/terms/ // @contact.name API Support // @contact.url http://www.dance-lessons-coach.com/support // @contact.email support@dance-lessons-coach.com // @license.name MIT // @license.url https://opensource.org/licenses/MIT // @host localhost:8080 // @BasePath /api // @schemes http https package main import ( "context" "DanceLessonsCoach/pkg/config" "DanceLessonsCoach/pkg/server" "github.com/rs/zerolog/log" ) func main() { // Load configuration (this will also setup logging) cfg, err := config.LoadConfig() if err != nil { log.Fatal().Err(err).Msg("Failed to load configuration") } // Create readiness context to control readiness state readyCtx, readyCancel := context.WithCancel(context.Background()) defer readyCancel() // Create and run server server := server.NewServer(cfg, readyCtx) if err := server.Run(); err != nil { log.Fatal().Err(err).Msg("Server failed") } }