Skip to content

Commit

Permalink
Refactor directory structure and file organization
Browse files Browse the repository at this point in the history
  • Loading branch information
Walkmana-25 committed Sep 29, 2024
1 parent 2e4d704 commit a30b823
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ Created by sasanqua and solufit developers

## ディレクトリ構成

```
```
tree
|- .devcontainer
|- devcontainer.json # devcontainerの設定
|- docker-compose.yml # 開発コンテナ関連のコンテナ立ち上げ
Expand Down Expand Up @@ -145,3 +146,26 @@ dbmate --url mysql://root:root@db:3306/test -d db/seed -s db/schema.sql up
```bash
xo schema mysql://root:root@db:3306/test
```

## ファイル構成

```bash
tree
anemos-public-api-library # Please put code user can import in root directory
├── anemos_public_api_library.go # package Root
├── go.mod
├── go.sum
├── internal
│   └── cache
│   ├── cache.go # Write Cache
│   ├── cache_test.go # Write Cache Test
│   ├── readCache.go # Read Cache
│   └── readCache_test.go # Read Cache Test
├── LICENSE
├── README.md
└── scripts
└── coverage.sh

4 directories, 10 files

```

0 comments on commit a30b823

Please sign in to comment.