mirror of
https://github.com/syntrex-lab/gomcp.git
synced 2026-05-15 06:12:37 +02:00
chore: migrate module path to syntrex-lab and prepare open source release
This commit is contained in:
parent
a54c892736
commit
5cbb3d89d3
107 changed files with 465 additions and 594 deletions
|
|
@ -6,7 +6,7 @@ import (
|
|||
"math/rand"
|
||||
"time"
|
||||
|
||||
domsoc "github.com/syntrex/gomcp/internal/domain/soc"
|
||||
domsoc "github.com/syntrex-lab/gomcp/internal/domain/soc"
|
||||
)
|
||||
|
||||
// runDemoSimulator runs a background goroutine that injects
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ import (
|
|||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/syntrex/gomcp/internal/application/resilience"
|
||||
"github.com/syntrex-lab/gomcp/internal/application/resilience"
|
||||
)
|
||||
|
||||
// ResilienceAPI holds references to the SARL engines for HTTP handlers.
|
||||
|
|
|
|||
|
|
@ -17,12 +17,12 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
shadowai "github.com/syntrex/gomcp/internal/application/shadow_ai"
|
||||
appsoc "github.com/syntrex/gomcp/internal/application/soc"
|
||||
"github.com/syntrex/gomcp/internal/domain/engines"
|
||||
"github.com/syntrex/gomcp/internal/infrastructure/auth"
|
||||
"github.com/syntrex/gomcp/internal/infrastructure/email"
|
||||
"github.com/syntrex/gomcp/internal/infrastructure/tracing"
|
||||
shadowai "github.com/syntrex-lab/gomcp/internal/application/shadow_ai"
|
||||
appsoc "github.com/syntrex-lab/gomcp/internal/application/soc"
|
||||
"github.com/syntrex-lab/gomcp/internal/domain/engines"
|
||||
"github.com/syntrex-lab/gomcp/internal/infrastructure/auth"
|
||||
"github.com/syntrex-lab/gomcp/internal/infrastructure/email"
|
||||
"github.com/syntrex-lab/gomcp/internal/infrastructure/tracing"
|
||||
)
|
||||
|
||||
// Server provides HTTP API endpoints for SOC monitoring.
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ import (
|
|||
"strconv"
|
||||
"time"
|
||||
|
||||
shadowai "github.com/syntrex/gomcp/internal/application/shadow_ai"
|
||||
shadowai "github.com/syntrex-lab/gomcp/internal/application/shadow_ai"
|
||||
)
|
||||
|
||||
// --- GET /api/v1/shadow-ai/stats ---
|
||||
|
|
|
|||
|
|
@ -13,10 +13,10 @@ import (
|
|||
"sync"
|
||||
"time"
|
||||
|
||||
appsoc "github.com/syntrex/gomcp/internal/application/soc"
|
||||
"github.com/syntrex/gomcp/internal/domain/engines"
|
||||
domsoc "github.com/syntrex/gomcp/internal/domain/soc"
|
||||
"github.com/syntrex/gomcp/internal/infrastructure/auth"
|
||||
appsoc "github.com/syntrex-lab/gomcp/internal/application/soc"
|
||||
"github.com/syntrex-lab/gomcp/internal/domain/engines"
|
||||
domsoc "github.com/syntrex-lab/gomcp/internal/domain/soc"
|
||||
"github.com/syntrex-lab/gomcp/internal/infrastructure/auth"
|
||||
)
|
||||
|
||||
// MaxRequestBodySize limits POST body size to prevent OOM (T3-3).
|
||||
|
|
|
|||
|
|
@ -8,9 +8,9 @@ import (
|
|||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
appsoc "github.com/syntrex/gomcp/internal/application/soc"
|
||||
domsoc "github.com/syntrex/gomcp/internal/domain/soc"
|
||||
"github.com/syntrex/gomcp/internal/infrastructure/sqlite"
|
||||
appsoc "github.com/syntrex-lab/gomcp/internal/application/soc"
|
||||
domsoc "github.com/syntrex-lab/gomcp/internal/domain/soc"
|
||||
"github.com/syntrex-lab/gomcp/internal/infrastructure/sqlite"
|
||||
)
|
||||
|
||||
// newTestServer creates an HTTP test server with a real SOC service backed by in-memory SQLite.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue