Skip to content

Commit

Permalink
docs: ディレクトリ戦略に関するドキュメントを作成
Browse files Browse the repository at this point in the history
  • Loading branch information
KinjiKawaguchi committed Mar 24, 2024
1 parent 62b04c9 commit cd7a3b3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions typing-server/docs/directory-strategy.md
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

0 comments on commit cd7a3b3

Please sign in to comment.