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:
@@ -15,18 +15,18 @@ import (
|
||||
"log"
|
||||
"time"
|
||||
|
||||
capspkg "chat-switchboard/capabilities"
|
||||
"chat-switchboard/crypto"
|
||||
"chat-switchboard/events"
|
||||
"chat-switchboard/handlers"
|
||||
"chat-switchboard/models"
|
||||
"chat-switchboard/notifications"
|
||||
"chat-switchboard/providers"
|
||||
"chat-switchboard/sandbox"
|
||||
"chat-switchboard/store"
|
||||
"chat-switchboard/taskutil"
|
||||
"chat-switchboard/tools"
|
||||
"chat-switchboard/webhook"
|
||||
capspkg "switchboard-core/capabilities"
|
||||
"switchboard-core/crypto"
|
||||
"switchboard-core/events"
|
||||
"switchboard-core/handlers"
|
||||
"switchboard-core/models"
|
||||
"switchboard-core/notifications"
|
||||
"switchboard-core/providers"
|
||||
"switchboard-core/sandbox"
|
||||
"switchboard-core/store"
|
||||
"switchboard-core/taskutil"
|
||||
"switchboard-core/tools"
|
||||
"switchboard-core/webhook"
|
||||
)
|
||||
|
||||
// Executor runs task completions headlessly (no HTTP client).
|
||||
|
||||
@@ -18,9 +18,9 @@ import (
|
||||
"math/rand"
|
||||
"time"
|
||||
|
||||
"chat-switchboard/models"
|
||||
"chat-switchboard/store"
|
||||
"chat-switchboard/taskutil"
|
||||
"switchboard-core/models"
|
||||
"switchboard-core/store"
|
||||
"switchboard-core/taskutil"
|
||||
)
|
||||
|
||||
// Scheduler polls for due tasks and dispatches execution.
|
||||
|
||||
@@ -10,8 +10,8 @@ import (
|
||||
"log"
|
||||
"time"
|
||||
|
||||
"chat-switchboard/store"
|
||||
"chat-switchboard/taskutil"
|
||||
"switchboard-core/store"
|
||||
"switchboard-core/taskutil"
|
||||
)
|
||||
|
||||
// RegisterBuiltins registers all built-in system functions.
|
||||
|
||||
Reference in New Issue
Block a user