step 1: rename module chat-switchboard → switchboard-core

- go.mod module name
- All 714 import references across 289 Go files
- VERSION: 0.1.0
- CI DB names: switchboard_core_{ci,dev,test}
- Docker image: gobha/switchboard-core
- Test fixtures: JWT issuer, repo names
- .env.example, docker-compose container name
- Compiles clean (go build exit 0)
This commit is contained in:
2026-03-25 19:48:04 -04:00
parent c03ece4230
commit 11fd8c1e57
298 changed files with 733 additions and 733 deletions

View File

@@ -11,9 +11,9 @@ import (
"github.com/gin-gonic/gin"
"github.com/golang-jwt/jwt/v5"
"chat-switchboard/config"
"chat-switchboard/database"
"chat-switchboard/store"
"switchboard-core/config"
"switchboard-core/database"
"switchboard-core/store"
)
// Claims represents the JWT payload. Must match handlers.Claims.