Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/build-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: make build

build-server:
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
needs:
- test
- build
Expand All @@ -60,15 +60,15 @@ jobs:
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0

- name: Log in to docker.io
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
registry: docker.io
username: eternis
password: ${{ secrets.DOCKER_PAT }}

- name: Log in to GHCR
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
registry: ghcr.io
Expand All @@ -94,7 +94,7 @@ jobs:
with:
context: .
file: ./server.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
push: ${{ github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
Expand All @@ -103,7 +103,7 @@ jobs:
VERSION=${{ github.ref_name }}

build-agent:
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
needs:
- test
- build
Expand All @@ -120,15 +120,15 @@ jobs:
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0

- name: Log in to docker.io
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
registry: docker.io
username: eternis
password: ${{ secrets.DOCKER_PAT }}

- name: Log in to GHCR
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/'))
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
with:
registry: ghcr.io
Expand All @@ -154,7 +154,7 @@ jobs:
with:
context: .
file: ./agent.Dockerfile
push: ${{ github.event_name != 'pull_request' }}
push: ${{ github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
Expand Down
22 changes: 11 additions & 11 deletions cmd/silo-proxy-agent/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/EternisAI/silo-proxy/internal/api/http"
"github.com/joho/godotenv"
"github.com/spf13/viper"
"github.com/lwlee2608/adder"
)

type Config struct {
Expand Down Expand Up @@ -42,21 +42,21 @@ func InitConfig() {

_ = godotenv.Load()

viper.SetConfigName("application")
viper.AddConfigPath(".")
viper.AddConfigPath("./cmd/silo-proxy-agent")
viper.SetConfigType("yaml")
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
adder.SetConfigName("application")
adder.AddConfigPath(".")
adder.AddConfigPath("./cmd/silo-proxy-agent")
adder.SetConfigType("yaml")
adder.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
adder.AutomaticEnv()

_ = viper.BindEnv("telegram.token", "TELEGRAM_TOKEN")
_ = viper.BindEnv("openrouter.apiKey", "OPENROUTER_API_KEY")
_ = adder.BindEnv("telegram.token", "TELEGRAM_TOKEN")
_ = adder.BindEnv("openrouter.apiKey", "OPENROUTER_API_KEY")
Comment on lines +52 to +53
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check if telegram or openrouter are referenced in agent code
rg -i 'telegram|openrouter' cmd/silo-proxy-agent/ --type go -c

Repository: EternisAI/silo-proxy

Length of output: 96


🏁 Script executed:

#!/bin/bash
# Search for telegram or openrouter usage in agent code, excluding just the BindEnv declarations
rg -i 'telegram|openrouter' cmd/silo-proxy-agent/ --type go -B 2 -A 2

Repository: EternisAI/silo-proxy

Length of output: 436


🏁 Script executed:

#!/bin/bash
# Check what the agent actually does - look at main.go and see how config is used
cat -n cmd/silo-proxy-agent/main.go | head -50

# Also search for any viper.Get calls that might read telegram/openrouter config
rg 'Get\(.*telegram|Get\(.*openrouter' cmd/silo-proxy-agent/ --type go

Repository: EternisAI/silo-proxy

Length of output: 1804


🏁 Script executed:

#!/bin/bash
# Find all config field accesses in agent code
rg 'config\.' cmd/silo-proxy-agent/ --type go | grep -v Binary | cut -d: -f2 | sort -u

Repository: EternisAI/silo-proxy

Length of output: 233


Remove unnecessary environment bindings for telegram and openrouter.

The telegram.token and openrouter.apiKey bindings on lines 52-53 are never used by the agent. The agent only requires config.Grpc, config.Local, and config.Log configuration sections. These bindings are copy-paste remnants from the server config and should be removed.

🤖 Prompt for AI Agents
In `@cmd/silo-proxy-agent/config.go` around lines 52 - 53, Remove the two unused
environment bindings that were copy-pasted from the server config: delete the
calls to adder.BindEnv("telegram.token", "TELEGRAM_TOKEN") and
adder.BindEnv("openrouter.apiKey", "OPENROUTER_API_KEY") in config
initialization so the agent only keeps the required config sections
(config.Grpc, config.Local, config.Log); this removes unused dependencies and
avoids binding unused env vars.


if err := viper.ReadInConfig(); err != nil {
if err := adder.ReadInConfig(); err != nil {
panic(err)
}

err = viper.Unmarshal(&config)
err = adder.Unmarshal(&config)
if err != nil {
panic(err)
}
Expand Down
26 changes: 13 additions & 13 deletions cmd/silo-proxy-server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ import (
"github.com/EternisAI/silo-proxy/internal/auth"
"github.com/EternisAI/silo-proxy/internal/db"
"github.com/joho/godotenv"
"github.com/spf13/viper"
"github.com/lwlee2608/adder"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check the adder library GitHub repo
curl -s "https://api.github.com/repos/lwlee2608/adder" | jq '{name, description, stargazers_count, open_issues_count, created_at, updated_at, license, is_fork}'

Repository: EternisAI/silo-proxy

Length of output: 429


🌐 Web query:

github.com/lwlee2608/adder configuration library stability

💡 Result:

The lwlee2608/adder Go configuration library looks early-stage / not yet “stable” in the semver sense:

  • It has only one published tag: v0.1.0 (Feb 8, 2026), and no GitHub Releases published. [1][2]
  • The repo history is small (15 commits total), with initial development starting Jan 22, 2026 and a cluster of updates on Feb 8, 2026. [3]
  • It does have CI set up (GitHub Actions workflow runs are present) and includes tests/examples, which is a positive sign for basic reliability—but it’s still a new, lightly adopted project (very low stars/forks). [4][5]

Practical stability guidance: treat it as “pre-1.0 API may change”; if you use it, pin to v0.1.0 and keep it behind a small abstraction so you can swap/adjust later. [1]

Sources:
[1] Git tags showing v0.1.0 date (Feb 8, 2026) — (github.com)
[2] GitHub Releases page (“There aren’t any releases here”) — (github.com)
[3] Commit history showing 15 commits and dates (Jan 22, 2026; Feb 8, 2026) — (github.com)
[4] Actions page showing CI workflows/runs — (github.com)
[5] Repo README describing scope/features — (github.com)

Citations:


The adder library is in pre-1.0 stage with minimal adoption—pin the version and consider an abstraction layer.

The github.com/lwlee2608/adder library is very early-stage (created Jan 22, 2026, only v0.1.0 released Feb 8, 2026). With 1 star and no GitHub Releases, it has negligible real-world adoption. While CI and tests are present, pre-1.0 libraries often introduce breaking changes.

Recommendations:

  • Explicitly pin to v0.1.0 in go.mod to prevent unexpected upgrades
  • Wrap adder calls in a small configuration abstraction so you can quickly swap libraries if issues arise
🤖 Prompt for AI Agents
In `@cmd/silo-proxy-server/config.go` at line 12, The code imports the early-stage
github.com/lwlee2608/adder package without a pinned version and without an
abstraction; update go.mod to pin the dependency to v0.1.0 and introduce a tiny
abstraction layer (e.g., define an AdderClient interface and a concrete
adderImpl that wraps github.com/lwlee2608/adder calls) so callers use
AdderClient rather than the adder package directly (place the wrapper in
config.go or a new adder_adapter.go and implement methods that mirror the used
adder functions).

)

type Config struct {
Log LogConfig
Http http.Config
Grpc GrpcConfig
DB db.Config `mapstructure:"db"`
JWT auth.Config `mapstructure:"jwt"`
DB db.Config `mapstructure:"db"`
JWT auth.Config `mapstructure:"jwt"`
}

type GrpcConfig struct {
Expand All @@ -44,21 +44,21 @@ func InitConfig() {

_ = godotenv.Load()

viper.SetConfigName("application")
viper.AddConfigPath(".")
viper.AddConfigPath("./cmd/silo-proxy-server")
viper.SetConfigType("yaml")
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
viper.AutomaticEnv()
adder.SetConfigName("application")
adder.AddConfigPath(".")
adder.AddConfigPath("./cmd/silo-proxy-server")
adder.SetConfigType("yaml")
adder.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
adder.AutomaticEnv()

_ = viper.BindEnv("telegram.token", "TELEGRAM_TOKEN")
_ = viper.BindEnv("openrouter.apiKey", "OPENROUTER_API_KEY")
_ = adder.BindEnv("telegram.token", "TELEGRAM_TOKEN")
_ = adder.BindEnv("openrouter.apiKey", "OPENROUTER_API_KEY")

if err := viper.ReadInConfig(); err != nil {
if err := adder.ReadInConfig(); err != nil {
panic(err)
}

err = viper.Unmarshal(&config)
err = adder.Unmarshal(&config)
if err != nil {
panic(err)
}
Expand Down
11 changes: 1 addition & 10 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ require (
github.com/google/uuid v1.6.0
github.com/jackc/pgx/v5 v5.8.0
github.com/joho/godotenv v1.5.1
github.com/lwlee2608/adder v0.1.0
github.com/pressly/goose/v3 v3.26.0
github.com/spf13/viper v1.21.0
github.com/stretchr/testify v1.11.1
github.com/testcontainers/testcontainers-go v0.40.0
github.com/testcontainers/testcontainers-go/modules/postgres v0.40.0
Expand Down Expand Up @@ -39,7 +39,6 @@ require (
github.com/docker/go-units v0.5.0 // indirect
github.com/ebitengine/purego v0.8.4 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/fsnotify/fsnotify v1.9.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.9 // indirect
github.com/gin-contrib/sse v1.1.0 // indirect
github.com/go-logr/logr v1.4.3 // indirect
Expand All @@ -48,7 +47,6 @@ require (
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.27.0 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/goccy/go-yaml v1.18.0 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.7 // indirect
Expand Down Expand Up @@ -81,16 +79,10 @@ require (
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/quic-go/qpack v0.6.0 // indirect
github.com/quic-go/quic-go v0.59.0 // indirect
github.com/sagikazarmark/locafero v0.11.0 // indirect
github.com/sethvargo/go-retry v0.3.0 // indirect
github.com/shirou/gopsutil/v4 v4.25.6 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
github.com/spf13/afero v1.15.0 // indirect
github.com/spf13/cast v1.10.0 // indirect
github.com/spf13/pflag v1.0.10 // indirect
github.com/stretchr/objx v0.5.2 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/tklauser/go-sysconf v0.3.12 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
Expand All @@ -102,7 +94,6 @@ require (
go.opentelemetry.io/otel/metric v1.38.0 // indirect
go.opentelemetry.io/otel/trace v1.38.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/arch v0.20.0 // indirect
golang.org/x/net v0.48.0 // indirect
golang.org/x/sync v0.19.0 // indirect
Expand Down
24 changes: 2 additions & 22 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ github.com/ebitengine/purego v0.8.4 h1:CF7LEKg5FFOsASUj0+QwaXf8Ht6TlFxg09+S9wz0o
github.com/ebitengine/purego v0.8.4/go.mod h1:iIjxzd6CiRiOG0UyXP+V1+jWqUXVjPKLAI0mRfJZTmQ=
github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg=
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8=
github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0=
github.com/fsnotify/fsnotify v1.9.0 h1:2Ml+OJNzbYCTzsxtv8vKSFD9PbJjmhYF14k/jKC7S9k=
github.com/fsnotify/fsnotify v1.9.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
github.com/gabriel-vasile/mimetype v1.4.9 h1:5k+WDwEsD9eTLL8Tz3L0VnmVh9QxGjRmjBvAG7U/oYY=
github.com/gabriel-vasile/mimetype v1.4.9/go.mod h1:WnSQhFKJuBlRyLiKohA/2DtIlPFAbguNaG7QCHcyGok=
github.com/gin-contrib/cors v1.7.6 h1:3gQ8GMzs1Ylpf70y8bMw4fVpycXIeX1ZemuSQIsnQQY=
Expand All @@ -70,8 +66,6 @@ github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJn
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
github.com/go-playground/validator/v10 v10.27.0 h1:w8+XrWVMhGkxOaaowyKH35gFydVHOvC0/uWoy2Fzwn4=
github.com/go-playground/validator/v10 v10.27.0/go.mod h1:I5QpIEbmr8On7W0TktmJAumgzX4CA1XNl4ZmDuVHKKo=
github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9LvH92wZUgs=
github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
github.com/goccy/go-json v0.10.5 h1:Fq85nIqj+gXn/S5ahsiTlK3TmC85qgirsdTP/+DeaC4=
github.com/goccy/go-json v0.10.5/go.mod h1:oq7eo15ShAhp70Anwd5lgX2pLfOS3QCiwU/PULtXL6M=
github.com/goccy/go-yaml v1.18.0 h1:8W7wMFS12Pcas7KU+VVkaiCng+kG8QiFeFwzFb+rwuw=
Expand Down Expand Up @@ -114,6 +108,8 @@ github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 h1:6E+4a0GO5zZEnZ81pIr0yLvtUWk2if982qA3F3QD6H4=
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0/go.mod h1:zJYVVT2jmtg6P3p1VtQj7WsuWi/y4VnjVBn7F8KPB3I=
github.com/lwlee2608/adder v0.1.0 h1:gsVUvfISRm72R90zlGgTZ+BYPbz/LyBm6EzTbc7G4f8=
github.com/lwlee2608/adder v0.1.0/go.mod h1:4dqj7kns4VIrv/WQ8GAEBj/V596B1A5fBjTbdu/5o4E=
github.com/magiconair/properties v1.8.10 h1:s31yESBquKXCV9a/ScB3ESkOjUYYv+X0rg8SYxI99mE=
github.com/magiconair/properties v1.8.10/go.mod h1:Dhd985XPs7jluiymwWYZ0G4Z61jb3vdS329zhj2hYo0=
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
Expand Down Expand Up @@ -169,24 +165,12 @@ github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec h1:W09IVJc94
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo=
github.com/rogpeppe/go-internal v1.14.1 h1:UQB4HGPB6osV0SQTLymcB4TgvyWu6ZyliaW0tI/otEQ=
github.com/rogpeppe/go-internal v1.14.1/go.mod h1:MaRKkUm5W0goXpeCfT7UZI6fk/L7L7so1lCWt35ZSgc=
github.com/sagikazarmark/locafero v0.11.0 h1:1iurJgmM9G3PA/I+wWYIOw/5SyBtxapeHDcg+AAIFXc=
github.com/sagikazarmark/locafero v0.11.0/go.mod h1:nVIGvgyzw595SUSUE6tvCp3YYTeHs15MvlmU87WwIik=
github.com/sethvargo/go-retry v0.3.0 h1:EEt31A35QhrcRZtrYFDTBg91cqZVnFL2navjDrah2SE=
github.com/sethvargo/go-retry v0.3.0/go.mod h1:mNX17F0C/HguQMyMyJxcnU471gOZGxCLyYaFyAZraas=
github.com/shirou/gopsutil/v4 v4.25.6 h1:kLysI2JsKorfaFPcYmcJqbzROzsBWEOAtw6A7dIfqXs=
github.com/shirou/gopsutil/v4 v4.25.6/go.mod h1:PfybzyydfZcN+JMMjkF6Zb8Mq1A/VcogFFg7hj50W9c=
github.com/sirupsen/logrus v1.9.3 h1:dueUQJ1C2q9oE3F7wvmSGAaVtTmUizReu6fjN8uqzbQ=
github.com/sirupsen/logrus v1.9.3/go.mod h1:naHLuLoDiP4jHNo9R0sCBMtWGeIprob74mVsIT4qYEQ=
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 h1:+jumHNA0Wrelhe64i8F6HNlS8pkoyMv5sreGx2Ry5Rw=
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8/go.mod h1:3n1Cwaq1E1/1lhQhtRK2ts/ZwZEhjcQeJQ1RuC6Q/8U=
github.com/spf13/afero v1.15.0 h1:b/YBCLWAJdFWJTN9cLhiXXcD7mzKn9Dm86dNnfyQw1I=
github.com/spf13/afero v1.15.0/go.mod h1:NC2ByUVxtQs4b3sIUphxK0NioZnmxgyCrfzeuq8lxMg=
github.com/spf13/cast v1.10.0 h1:h2x0u2shc1QuLHfxi+cTJvs30+ZAHOGRic8uyGTDWxY=
github.com/spf13/cast v1.10.0/go.mod h1:jNfB8QC9IA6ZuY2ZjDp0KtFO2LZZlg4S/7bzP6qqeHo=
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=
github.com/spf13/pflag v1.0.10/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
github.com/spf13/viper v1.21.0 h1:x5S+0EU27Lbphp4UKm1C+1oQO+rKx36vfCoaVebLFSU=
github.com/spf13/viper v1.21.0/go.mod h1:P0lhsswPGWD/1lZJ9ny3fYnVqxiegrlNrEmgLjbTCAY=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
Expand All @@ -199,8 +183,6 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8=
github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU=
github.com/testcontainers/testcontainers-go v0.40.0 h1:pSdJYLOVgLE8YdUY2FHQ1Fxu+aMnb6JfVz1mxk7OeMU=
github.com/testcontainers/testcontainers-go v0.40.0/go.mod h1:FSXV5KQtX2HAMlm7U3APNyLkkap35zNLxukw9oBi/MY=
github.com/testcontainers/testcontainers-go/modules/postgres v0.40.0 h1:s2bIayFXlbDFexo96y+htn7FzuhpXLYJNnIuglNKqOk=
Expand Down Expand Up @@ -239,8 +221,6 @@ go.uber.org/mock v0.5.2 h1:LbtPTcP8A5k9WPXj54PPPbjcI4Y6lhyOZXn+VS7wNko=
go.uber.org/mock v0.5.2/go.mod h1:wLlUxC2vVTPTaE3UD51E0BGOAElKrILxhVSDYQLld5o=
go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0=
go.uber.org/multierr v1.11.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y=
go.yaml.in/yaml/v3 v3.0.4 h1:tfq32ie2Jv2UxXFdLJdh3jXuOzWiL1fo0bu/FbuKpbc=
go.yaml.in/yaml/v3 v3.0.4/go.mod h1:DhzuOOF2ATzADvBadXxruRBLzYTpT36CKvDb3+aBEFg=
golang.org/x/arch v0.20.0 h1:dx1zTU0MAE98U+TQ8BLl7XsJbgze2WnNKF/8tGp/Q6c=
golang.org/x/arch v0.20.0/go.mod h1:bdwinDaKcfZUGpH09BB7ZmOfhalA8lQdzl62l8gGWsk=
golang.org/x/crypto v0.46.0 h1:cKRW/pmt1pKAfetfu+RCEvjvZkA9RimPbh7bhFjGVBU=
Expand Down