https://github.com/arakkkkk/go-clean-todo
https://github.com/arakkkkk/go-clean-todo
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arakkkkk/go-clean-todo
- Owner: arakkkkk
- Created: 2023-08-19T11:22:03.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-14T14:30:39.000Z (almost 2 years ago)
- Last Synced: 2025-03-27T12:32:51.909Z (7 months ago)
- Language: Go
- Size: 41 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-todo
## 概要
> 学習用途golangを用いて、クリーンアーキテクチャーでREST APIを実装。
[evrone/go-clean-template](https://github.com/evrone/go-clean-template/tree/master)を参考に作成しています。
## 使用したライブラリ
- chi: rest api
- ent: ORM## Archtecture
```mermaid
flowchart TB
entity["entity"]
repository["repository"]
usecase["usecase"]
interface["usecase\ninterface"]
controller["controller"]
app["app\n(rest with chi)"]
mysql["mysql"]
entity["entity"]mysql-->app
app-->controller
app-->repository
repository-->interface
controller-->interface
interface-->usecase
usecase-->entity
```## Todo
- [x] アプリ作成
- [ ] アーキテクチャーの確認とREADME修正
- [ ] テスト作成