-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62b04c9
commit cd7a3b3
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
. | ||
|
||
├── api | ||
│ ├── cmd - アプリケーションのエントリーポイントとなるmainパッケージを格納するディレクトリ | ||
│ ├── handler - APIのエンドポイントハンドラーを実装するパッケージを格納するディレクトリ | ||
│ ├── repository - データ永続化層とのインターフェースを定義するパッケージを格納するディレクトリ | ||
│ ├── router - APIルーティングを定義するパッケージを格納するディレクトリ | ||
│ └── service - アプリケーションのビジネスロジックを実装するパッケージを格納するディレクトリ | ||
├── domain | ||
│ ├── model | ||
│ └── repository - データ永続化層の実装を格納するディレクトリ | ||
│ └── ent | ||
│ └── schema - データベーススキーマの定義を格納するディレクトリ | ||
├── Dockerfile | ||
├── Dockerfile.dev | ||
├── docker-compose.dev.yml | ||
├── docker-compose.yml | ||
├── go.mod | ||
├── go.sum | ||
└── openapi.yaml |