🔧 chore: update all references from DanceLessonsCoach to dance-lessons-coach
Some checks failed
CI/CD Pipeline / CI Pipeline (push) Failing after 4m0s

This commit is contained in:
2026-04-06 17:27:07 +02:00
parent cb656b2711
commit 157d8e2d19
14 changed files with 579 additions and 101 deletions

View File

@@ -4,9 +4,9 @@ import (
"context"
"fmt"
"DanceLessonsCoach/pkg/config"
"DanceLessonsCoach/pkg/server"
"DanceLessonsCoach/pkg/version"
"dance-lessons-coach/pkg/config"
"dance-lessons-coach/pkg/server"
"dance-lessons-coach/pkg/version"
"github.com/rs/zerolog/log"
@@ -15,10 +15,10 @@ import (
var rootCmd = &cobra.Command{
Use: "dance-lessons-coach",
Short: "DanceLessonsCoach - API server and CLI tools",
Long: `DanceLessonsCoach provides greeting services and API management.
Short: "dance-lessons-coach - API server and CLI tools",
Long: `dance-lessons-coach provides greeting services and API management.
To begin working with DanceLessonsCoach, run:
To begin working with dance-lessons-coach, run:
dance-lessons-coach server --help`,
SilenceUsage: true,
}
@@ -33,7 +33,7 @@ var versionCmd = &cobra.Command{
var serverCmd = &cobra.Command{
Use: "server",
Short: "Start the DanceLessonsCoach server",
Short: "Start the dance-lessons-coach server",
Run: func(cmd *cobra.Command, args []string) {
// Load config and start server
cfg, err := config.LoadConfig()

View File

@@ -5,7 +5,7 @@ import (
"fmt"
"os"
"DanceLessonsCoach/pkg/greet"
"dance-lessons-coach/pkg/greet"
)
func main() {

View File

@@ -1,8 +1,8 @@
// Package main provides the DanceLessonsCoach server entry point
// Package main provides the dance-lessons-coach server entry point
//
// @title DanceLessonsCoach API
// @version 1.1.1
// @description API for DanceLessonsCoach service providing greeting functionality
// @title dance-lessons-coach API
// @version 1.2.0
// @description API for dance-lessons-coach service providing greeting functionality
// @termsOfService http://swagger.io/terms/
// @contact.name API Support
@@ -23,9 +23,9 @@ import (
"fmt"
"os"
"DanceLessonsCoach/pkg/config"
"DanceLessonsCoach/pkg/server"
"DanceLessonsCoach/pkg/version"
"dance-lessons-coach/pkg/config"
"dance-lessons-coach/pkg/server"
"dance-lessons-coach/pkg/version"
"github.com/rs/zerolog/log"
)