Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hirotoshioi/domain-driven-in-go
Implement simple user service using domain driven design techniques
https://github.com/hirotoshioi/domain-driven-in-go
Last synced: 24 days ago
JSON representation
Implement simple user service using domain driven design techniques
- Host: GitHub
- URL: https://github.com/hirotoshioi/domain-driven-in-go
- Owner: HirotoShioi
- Created: 2023-05-08T09:10:45.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-05-09T23:24:15.000Z (over 1 year ago)
- Last Synced: 2024-12-09T01:38:23.979Z (26 days ago)
- Language: Go
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GOでドメイン駆動開発
以下の機能を持ったアプリケーションをドメイン駆動開発を用いて開発する
- ユーザーの登録
- ユーザーの削除
- 登録済みユーザーの取得
- ユーザーの更新ユーザーのエンティティは以下
```
User:
id: uuid;
username: string; ユニークキー制約を持たせる
email: string;
```# 使うパッケージ
- [sqlc](https://sqlc.dev/)
- [migrate](https://github.com/golang-migrate/migrate)
- [dbdiagram](https://dbdiagram.io/)## ステップ
- [x] 値オブジェクトを実装する
- [x] エンティティを実装する
- [x] ドメインサービスを実装する
- [x] リポジトリを実装する
- [x] アプリケーションサービスを実装する
- [x] migrateを改善