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

@@ -16,37 +16,37 @@ import (
"github.com/gin-gonic/gin"
"github.com/prometheus/client_golang/prometheus/promhttp"
"chat-switchboard/auth"
"chat-switchboard/compaction"
"chat-switchboard/config"
"chat-switchboard/crypto"
"chat-switchboard/database"
"chat-switchboard/events"
"chat-switchboard/extraction"
"chat-switchboard/filters"
"chat-switchboard/sandbox"
"chat-switchboard/handlers"
"chat-switchboard/health"
"chat-switchboard/logging"
"chat-switchboard/metrics"
"chat-switchboard/knowledge"
"chat-switchboard/memory"
"chat-switchboard/middleware"
"chat-switchboard/notifications"
"chat-switchboard/pages"
"chat-switchboard/providers"
"chat-switchboard/retention"
"chat-switchboard/roles"
"chat-switchboard/routing"
"chat-switchboard/scheduler"
"chat-switchboard/storage"
"chat-switchboard/store"
postgres "chat-switchboard/store/postgres"
sqliteStore "chat-switchboard/store/sqlite"
"chat-switchboard/tools"
"chat-switchboard/tools/search"
"chat-switchboard/treepath"
"chat-switchboard/workspace"
"switchboard-core/auth"
"switchboard-core/compaction"
"switchboard-core/config"
"switchboard-core/crypto"
"switchboard-core/database"
"switchboard-core/events"
"switchboard-core/extraction"
"switchboard-core/filters"
"switchboard-core/sandbox"
"switchboard-core/handlers"
"switchboard-core/health"
"switchboard-core/logging"
"switchboard-core/metrics"
"switchboard-core/knowledge"
"switchboard-core/memory"
"switchboard-core/middleware"
"switchboard-core/notifications"
"switchboard-core/pages"
"switchboard-core/providers"
"switchboard-core/retention"
"switchboard-core/roles"
"switchboard-core/routing"
"switchboard-core/scheduler"
"switchboard-core/storage"
"switchboard-core/store"
postgres "switchboard-core/store/postgres"
sqliteStore "switchboard-core/store/sqlite"
"switchboard-core/tools"
"switchboard-core/tools/search"
"switchboard-core/treepath"
"switchboard-core/workspace"
)
// v0.33.0: Embedded OpenAPI spec and Swagger UI for /api/docs.