diff options
author | Josh Spicer <josh@joshspicer.com> | 2022-05-12 23:14:55 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 23:14:55 +0300 |
commit | 3e7c0308db4005644b21c0626ba6239271cf04cc (patch) | |
tree | c4a905d2510a974c5247233a2d63bc681c836e94 | |
parent | 3a277ad757dbc51a43a5dd452d030c67a49d49f1 (diff) |
Repo Structure
-rw-r--r-- | README.md | 24 |
1 files changed, 23 insertions, 1 deletions
@@ -1 +1,23 @@ -# features
\ No newline at end of file +# features + +## Repo Structure + +``` +. +├── lib +│ └── utils.sh +├── README.md +├── settings.env +├── src +│ ├── dotnet +│ │ ├── feature.json +│ │ └── install.sh +│ ├── go +│ │ ├── feature.json +│ │ └── install.sh +├── test +│ ├── dotnet +│ │ └── test.sh +│ └── go +│ └── test.sh +``` |