Skip to content
Open
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
a49cc88
docker-composeをやめてdb,migration,tblsを個別に
inochidainini May 5, 2026
92e79cf
go tool tblsに変更
inochidainini May 5, 2026
0e017ca
Merge branch 'main' into speedUpCi
inochidainini May 6, 2026
7c5d701
環境設定にurlを追加
inochidainini May 6, 2026
dfa89f9
tblsのversionを1.56.2に
inochidainini May 7, 2026
d6e334d
Revert "tblsのversionを1.56.2に"
inochidainini May 7, 2026
1feb1a9
mariadbのヘルスチェック変更
inochidainini May 9, 2026
1ebd39f
airをdev/Dockerfileへ移動
inochidainini May 10, 2026
5073d22
Merge remote-tracking branch 'origin' into speedUpCi
inochidainini May 10, 2026
be02b5d
ローカルのtblsのバージョンをciと一致させた
inochidainini May 11, 2026
b3f9ec6
設定ファイルにtbls.yamlを指定
inochidainini May 22, 2026
d10e9f4
Merge branch 'main' into speedUpCi
inochidainini May 22, 2026
a6c6071
tblsを依存関係に追加しなおし
inochidainini May 22, 2026
c8778a6
tbls実行し直し
inochidainini May 22, 2026
cbc66b1
Merge branch 'main' into speedUpCi
inochidainini Jun 12, 2026
4542176
デバッグ用ci
inochidainini Jun 12, 2026
23c6390
追加し忘れ
inochidainini Jun 12, 2026
ef17ad7
追加し忘れ
inochidainini Jun 12, 2026
674620e
merge main
inochidainini Jun 18, 2026
0884363
デバッグ用
inochidainini Jun 18, 2026
7cf1405
デバッグ用diff表示
inochidainini Jun 18, 2026
9357f40
Merge branch 'main' into speedUpCi
inochidainini Jul 10, 2026
6e9c6f8
tbls更新し忘れ
inochidainini Jul 11, 2026
1e9c89d
citest1
inochidainini Jul 11, 2026
eaad0f5
Bump docker/login-action from 4.2.0 to 4.4.0
dependabot[bot] Jul 10, 2026
6fb43de
feature: handlerのGetFeedbackConfigを実装した
w4mally Jul 13, 2026
0b2c136
fix: mock生成用のコメントが抜けていた
w4mally Jul 13, 2026
baf1a84
go mod downloadの時間計測
inochidainini Aug 7, 2026
09943f8
checkoutversion変更
inochidainini Aug 7, 2026
ef2a66c
Merge branch 'main' into speedUpCi
inochidainini Aug 7, 2026
8dee6a6
er図を除く
inochidainini Aug 7, 2026
ba63925
タイポ
inochidainini Aug 7, 2026
6dd934b
Merge branch 'main' into speedUpCi
inochidainini Aug 24, 2026
fed8da7
:sparkles: repositoryのinterface定義
ikura-hamu Aug 24, 2026
645f893
:sparkles: serviceのSetGameCreatorJobsを実装
ikura-hamu Aug 24, 2026
3c98f01
:white_check_mark: serviceのSetGameCreatorJobsのテスト
ikura-hamu Aug 24, 2026
e2e4c16
:adhesive_bandage: serviceのinterface定義
ikura-hamu Aug 24, 2026
c67cff1
:factory: コード生成
ikura-hamu Aug 24, 2026
1e138d1
:adhesive_bandage: repositoryの仮実装
ikura-hamu Aug 24, 2026
30a5bc4
dockerのtblsのverを1.94.5にして比較
inochidainini Aug 24, 2026
b0842b4
tbls dockerとtbls goの順番入れ替え
inochidainini Aug 24, 2026
7b12d3f
tbls dockerのみ
inochidainini Aug 24, 2026
86b82de
mariadbとatlasもdockerに
inochidainini Aug 26, 2026
7c45429
atlas.ci.hclにdocker環境を追加
inochidainini Aug 26, 2026
12d3d7f
Merge remote-tracking branch 'origin/feat/creator_service_set_creator…
inochidainini Aug 26, 2026
6326715
テスト用
inochidainini Aug 26, 2026
bc362af
テスト用取り消し
inochidainini Aug 26, 2026
b3fcd2e
デバッグ用
inochidainini Aug 26, 2026
5481a8b
-c tbls.ymlつけ忘れ
inochidainini Aug 26, 2026
dae1d38
Revert "Merge remote-tracking branch 'origin/feat/creator_service_set…
inochidainini Aug 27, 2026
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
44 changes: 37 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -157,17 +157,47 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}

tbls:
services:
mariadb:
image: mariadb:10.6.4
env:
MYSQL_ROOT_PASSWORD: pass
MYSQL_DATABASE: trap_collection
TZ: Asia/Tokyo
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping -h 127.0.0.1 -ppass"
--health-interval 1s
--health-timeout 5m
--health-retries 1000

@coderabbitai coderabbitai Bot May 5, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Health-check --health-retries 1000 is excessively high — a DB startup failure would block for ~16 minutes.

At --health-interval 1s × 1000 retries, the job won't give up for roughly 16 minutes if the container never becomes healthy. The migrate-lint job uses --health-retries 10 (with --health-interval 10s and a --health-start-period). Bringing tbls in line prevents silent stalls.

🐛 Proposed fix — align with migrate-lint health-check tuning
       options: >-
         --health-cmd "mysqladmin ping -h 127.0.0.1 -ppass"
-        --health-interval 1s
-        --health-timeout 5m
-        --health-retries 1000
+        --health-interval 10s
+        --health-start-period 10s
+        --health-timeout 5s
+        --health-retries 10
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
tbls:
services:
mariadb:
image: mariadb:10.6.4
env:
MYSQL_ROOT_PASSWORD: pass
MYSQL_DATABASE: trap_collection
TZ: Asia/Tokyo
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping -h 127.0.0.1 -ppass"
--health-interval 1s
--health-timeout 5m
--health-retries 1000
tbls:
services:
mariadb:
image: mariadb:10.6.4
env:
MYSQL_ROOT_PASSWORD: pass
MYSQL_DATABASE: trap_collection
TZ: Asia/Tokyo
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping -h 127.0.0.1 -ppass"
--health-interval 10s
--health-start-period 10s
--health-timeout 5s
--health-retries 10
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.github/workflows/ci.yaml around lines 159 - 174, The tbls mariadb service
health-check is set to an excessively high retry count; in the mariadb service
options block (service name "mariadb" under "tbls") replace "--health-retries
1000" with a realistic value such as "--health-retries 10" and align the timing
with migrate-lint by changing "--health-interval 1s" to "--health-interval 10s"
and adding a "--health-start-period 30s" (or similar start-period) so the job
fails fast on real failures instead of waiting ~16 minutes.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

妥当な指摘だと思うので対応をお願いします

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

@mathsuky ご確認ありがとうございます! tbls ジョブの health-check パラメータを migrate-lint ジョブに合わせて修正します。

  • .github/workflows/ci.yamltbls ジョブの mariadb サービスの health-check オプションを migrate-lint ジョブと同様の設定に変更する

Failed to handle agent chat message. Please try again.


name: tbls
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Run tbls
run: docker compose -f docker/tbls/compose.yaml up --build --abort-on-container-exit
- uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: go.mod

- name: Check diff
- name: Install Atlas
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "tbls diff detected. Please generate and commit the new docs. (task tbls)"
exit 1
fi
Comment on lines -169 to -172

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

この部分が単が置き換えなどではなく単に消えてしまっているように見えます

curl -sSf https://atlasgo.sh | sh -s -- --community --yes
shell: bash

- name: Run migration
run: |
until mysqladmin ping -h 127.0.0.1 -ppass --silent; do
echo "Waiting for database to be healthy..."
sleep 1
done

atlas migrate apply \
--config file://atlas.ci.hcl \
--env ci

- name: Run tbls
run: |
TBLS_DSN=mariadb://root:pass@127.0.0.1:3306/trap_collection \
go tool tbls doc --rm-dist

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

go tool tbls doc --rm-dist -c .tbls.ymlのように-cオプションを付すとドキュメント関連の大量の差分が消えると思うので試してみてください

5 changes: 5 additions & 0 deletions atlas.ci.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ env "local" {

env "ci" {
dev = "mysql://root:pass@localhost:3306/trap_collection"
url = "mysql://root:pass@localhost:3306/trap_collection"

migration {
dir = "file://migrations"
}

lint {
git {
Expand Down
156 changes: 131 additions & 25 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ require (
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-colorable v0.1.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.32 // indirect
github.com/microsoft/go-mssqldb v1.9.5 // indirect
github.com/mattn/go-sqlite3 v1.14.38 // indirect
github.com/microsoft/go-mssqldb v1.9.8 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/term v0.5.2 // indirect
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect
Expand Down Expand Up @@ -135,87 +135,193 @@ require (
ariga.io/atlas v0.38.0 // indirect
cel.dev/expr v0.25.1 // indirect
cloud.google.com/go v0.123.0 // indirect
cloud.google.com/go/auth v0.17.0 // indirect
cloud.google.com/go/auth v0.18.2 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
cloud.google.com/go/bigquery v1.75.0 // indirect
cloud.google.com/go/compute/metadata v0.9.0 // indirect
cloud.google.com/go/iam v1.5.3 // indirect
cloud.google.com/go/longrunning v0.7.0 // indirect
cloud.google.com/go/longrunning v0.8.0 // indirect
cloud.google.com/go/monitoring v1.24.3 // indirect
cloud.google.com/go/spanner v1.86.1 // indirect
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.5.3 // indirect
cloud.google.com/go/spanner v1.89.0 // indirect
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
github.com/99designs/keyring v1.2.2 // indirect
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.0 // indirect
github.com/Azure/azure-sdk-for-go/sdk/internal v1.11.2 // indirect
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.6.1 // indirect
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/ClickHouse/ch-go v0.71.0 // indirect
github.com/ClickHouse/clickhouse-go/v2 v2.44.0 // indirect
github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.6.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.30.0 // indirect
github.com/IGLOU-EU/go-wildcard/v2 v2.1.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/air-verse/air v1.63.0 // indirect
github.com/andybalholm/brotli v1.2.0 // indirect
github.com/apache/arrow-go/v18 v18.4.0 // indirect
github.com/apache/arrow/go/v12 v12.0.1 // indirect
github.com/apache/arrow/go/v15 v15.0.2 // indirect
github.com/apache/thrift v0.22.0 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
github.com/aquasecurity/go-version v0.0.1 // indirect
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.84 // indirect
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.57.1 // indirect
github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.21 // indirect
github.com/aws/aws-sdk-go-v2/service/signin v1.0.9 // indirect
github.com/beta/freetype v0.0.1 // indirect
github.com/bmatcuk/doublestar v1.3.4 // indirect
github.com/bradleyfalzon/ghinstallation/v2 v2.17.0 // indirect
github.com/buildkite/interpolate v0.1.5 // indirect
github.com/cli/go-gh/v2 v2.12.2 // indirect
github.com/cli/safeexec v1.0.1 // indirect
github.com/clipperhouse/uax29/v2 v2.2.0 // indirect
github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect
github.com/containerd/errdefs v1.0.0 // indirect
github.com/containerd/errdefs/pkg v0.3.0 // indirect
github.com/coreos/go-oidc/v3 v3.5.0 // indirect
github.com/danieljoos/wincred v1.2.2 // indirect
github.com/databricks/databricks-sdk-go v0.126.0 // indirect
github.com/databricks/databricks-sql-go v1.10.0 // indirect
github.com/disintegration/imaging v1.6.2 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/dnephin/pflag v1.0.7 // indirect
github.com/dvsekhvalnov/jose2go v1.8.0 // indirect
github.com/envoyproxy/go-control-plane/envoy v1.36.0 // indirect
github.com/envoyproxy/protoc-gen-validate v1.3.0 // indirect
github.com/expr-lang/expr v1.17.8 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-jose/go-jose/v4 v4.1.3 // indirect
github.com/flopp/go-findfont v0.1.0 // indirect
github.com/fogleman/gg v1.3.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
github.com/gertd/go-pluralize v0.2.1 // indirect
github.com/go-faster/city v1.0.1 // indirect
github.com/go-faster/errors v0.7.1 // indirect
github.com/go-jose/go-jose/v3 v3.0.5 // indirect
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-openapi/inflect v0.19.0 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/goccy/go-graphviz v0.2.10 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/goccy/go-yaml v1.19.2 // indirect
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect
github.com/golang/snappy v1.0.0 // indirect
github.com/google/flatbuffers v25.2.10+incompatible // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/go-github/v67 v67.0.0 // indirect
github.com/google/go-github/v75 v75.0.0 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/s2a-go v0.1.9 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.7 // indirect
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.14 // indirect
github.com/googleapis/gax-go/v2 v2.18.0 // indirect
github.com/googleapis/go-gorm-spanner v1.9.0 // indirect
github.com/googleapis/go-sql-spanner v1.21.0 // indirect
github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
github.com/hashicorp/hcl/v2 v2.18.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/puddle/v2 v2.2.2 // indirect
github.com/k1LoW/duration v1.2.0 // indirect
github.com/k1LoW/errors v1.2.0 // indirect
github.com/k1LoW/expand v0.16.7 // indirect
github.com/k1LoW/ffff v0.3.0 // indirect
github.com/k1LoW/fontdir v0.1.1 // indirect
github.com/k1LoW/ghfs v1.5.3 // indirect
github.com/k1LoW/go-github-client/v67 v67.0.21 // indirect
github.com/k1LoW/tbls v1.94.5 // indirect
github.com/klauspost/asmfmt v1.3.2 // indirect
github.com/klauspost/compress v1.18.3 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/lib/pq v1.12.1 // indirect
github.com/loadoff/excl v0.0.0-20171207172601-c6a9e4c4b4c4 // indirect
github.com/mattn/go-runewidth v0.0.21 // indirect
github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect
github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/moby/moby/api v1.54.0 // indirect
github.com/moby/moby/client v0.3.0 // indirect
github.com/moby/sys/user v0.3.0 // indirect
github.com/moby/sys/user v0.4.0 // indirect
github.com/montanaflynn/stats v0.7.1 // indirect
github.com/mtibben/percent v0.2.1 // indirect
github.com/oapi-codegen/oapi-codegen/v2 v2.5.0 // indirect
github.com/olekukonko/errors v1.1.0 // indirect
github.com/olekukonko/ll v0.0.9 // indirect
github.com/olekukonko/tablewriter v1.0.9 // indirect
github.com/onsi/gomega v1.34.1 // indirect
github.com/paulmach/orb v0.12.0 // indirect
github.com/pierrec/lz4/v4 v4.1.25 // indirect
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
github.com/rs/zerolog v1.35.0 // indirect
github.com/sahilm/fuzzy v0.1.0 // indirect
github.com/samber/lo v1.53.0 // indirect
github.com/segmentio/asm v1.2.1 // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/snowflakedb/gosnowflake v1.18.0 // indirect
github.com/speakeasy-api/jsonpath v0.6.0 // indirect
github.com/spf13/cobra v1.10.2 // indirect
github.com/spf13/pflag v1.0.9 // indirect
github.com/spiffe/go-spiffe/v2 v2.6.0 // indirect
github.com/tetratelabs/wazero v1.10.1 // indirect
github.com/woodsbury/decimal128 v1.3.0 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.1.2 // indirect
github.com/xdg-go/stringprep v1.0.4 // indirect
github.com/xo/dburl v0.24.2 // indirect
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect
github.com/zclconf/go-cty v1.14.4 // indirect
github.com/zclconf/go-cty-yaml v1.1.0 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
gitlab.com/golang-commonmark/mdurl v0.0.0-20191124015652-932350d1cb84 // indirect
go.mongodb.org/mongo-driver v1.17.9 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.39.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.64.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.64.0 // indirect
go.opentelemetry.io/otel v1.40.0 // indirect
go.opentelemetry.io/otel/metric v1.40.0 // indirect
go.opentelemetry.io/otel/sdk v1.40.0 // indirect
go.opentelemetry.io/otel/sdk/metric v1.40.0 // indirect
go.opentelemetry.io/otel/trace v1.40.0 // indirect
go.opentelemetry.io/otel v1.43.0 // indirect
go.opentelemetry.io/otel/metric v1.43.0 // indirect
go.opentelemetry.io/otel/sdk v1.43.0 // indirect
go.opentelemetry.io/otel/sdk/metric v1.43.0 // indirect
go.opentelemetry.io/otel/trace v1.43.0 // indirect
go.yaml.in/yaml/v2 v2.4.3 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.48.0 // indirect
golang.org/x/net v0.50.0 // indirect
golang.org/x/oauth2 v0.34.0 // indirect
golang.org/x/sys v0.41.0 // indirect
golang.org/x/text v0.34.0 // indirect
golang.org/x/time v0.14.0 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/exp v0.0.0-20250819193227-8b4c13bb791b // indirect
golang.org/x/image v0.38.0 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/oauth2 v0.36.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/telemetry v0.0.0-20260209163413-e7419c687ee4 // indirect
golang.org/x/term v0.41.0 // indirect
golang.org/x/text v0.35.0 // indirect
golang.org/x/time v0.15.0 // indirect
golang.org/x/tools v0.42.0 // indirect
google.golang.org/api v0.257.0 // indirect
google.golang.org/genproto v0.0.0-20251202230838-ff82c1b0f217 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/api v0.272.0 // indirect
google.golang.org/genproto v0.0.0-20260217215200-42d3e9bedb6d // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260316180232-0b37fe3546d5 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260316180232-0b37fe3546d5 // indirect
google.golang.org/grpc v1.79.3 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/gotestsum v1.8.2 // indirect
)

tool (
ariga.io/atlas-provider-gorm
github.com/air-verse/air
github.com/google/wire/cmd/wire
github.com/k1LoW/tbls
github.com/oapi-codegen/oapi-codegen/v2/cmd/oapi-codegen
go.uber.org/mock/mockgen
)
Loading
Loading