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:
@@ -19,7 +19,7 @@ import (
|
||||
"go.starlark.net/starlark"
|
||||
"go.starlark.net/starlarkstruct"
|
||||
|
||||
"chat-switchboard/models"
|
||||
"switchboard-core/models"
|
||||
)
|
||||
|
||||
// ConnectionResolver resolves extension connections with secret decryption.
|
||||
|
||||
@@ -18,7 +18,7 @@ import (
|
||||
"go.starlark.net/starlark"
|
||||
"go.starlark.net/starlarkstruct"
|
||||
|
||||
"chat-switchboard/models"
|
||||
"switchboard-core/models"
|
||||
)
|
||||
|
||||
// libContext carries per-invocation state for lib.require() calls.
|
||||
|
||||
@@ -12,8 +12,8 @@ import (
|
||||
"go.starlark.net/starlark"
|
||||
"go.starlark.net/starlarkstruct"
|
||||
|
||||
"chat-switchboard/models"
|
||||
"chat-switchboard/store"
|
||||
"switchboard-core/models"
|
||||
"switchboard-core/store"
|
||||
)
|
||||
|
||||
// ─── Secrets Module ──────────────────────────
|
||||
|
||||
@@ -32,7 +32,7 @@ import (
|
||||
"go.starlark.net/starlark"
|
||||
"go.starlark.net/starlarkstruct"
|
||||
|
||||
"chat-switchboard/providers"
|
||||
"switchboard-core/providers"
|
||||
)
|
||||
|
||||
// ─── Provider Resolution Interface ──────────
|
||||
|
||||
@@ -5,7 +5,7 @@ import (
|
||||
|
||||
"go.starlark.net/starlark"
|
||||
|
||||
"chat-switchboard/providers"
|
||||
"switchboard-core/providers"
|
||||
)
|
||||
|
||||
// ─── ParseRequiresProvider ──────────────────
|
||||
|
||||
@@ -33,8 +33,8 @@ import (
|
||||
|
||||
starlarkjson "go.starlark.net/lib/json"
|
||||
|
||||
"chat-switchboard/models"
|
||||
"chat-switchboard/store"
|
||||
"switchboard-core/models"
|
||||
"switchboard-core/store"
|
||||
)
|
||||
|
||||
// RunContext carries per-invocation state that modules need but which
|
||||
|
||||
@@ -17,7 +17,7 @@ import (
|
||||
"go.starlark.net/starlark"
|
||||
"go.starlark.net/starlarkstruct"
|
||||
|
||||
"chat-switchboard/store"
|
||||
"switchboard-core/store"
|
||||
)
|
||||
|
||||
// BuildSettingsModule creates the "settings" Starlark module for a package.
|
||||
|
||||
@@ -19,8 +19,8 @@ import (
|
||||
"go.starlark.net/starlark"
|
||||
"go.starlark.net/starlarkstruct"
|
||||
|
||||
"chat-switchboard/store"
|
||||
"chat-switchboard/workflow"
|
||||
"switchboard-core/store"
|
||||
"switchboard-core/workflow"
|
||||
)
|
||||
|
||||
// BuildWorkflowModule creates the "workflow" Starlark module for a package.
|
||||
|
||||
Reference in New Issue
Block a user