Created
October 23, 2018 03:21
-
-
Save leandrocp/c960a9f5a186fc771e510753a0de1c0a to your computer and use it in GitHub Desktop.
art_bc_dir_structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ tree | |
. | |
├── README.md | |
├── apps | |
│ ├── sales | |
│ │ ├── README.md | |
│ │ ├── config | |
│ │ │ └── config.exs | |
│ │ ├── lib | |
│ │ │ └── sales.ex | |
│ │ ├── mix.exs | |
│ │ └── test | |
│ │ ├── sales_test.exs | |
│ │ └── test_helper.exs | |
│ └── support | |
│ ├── README.md | |
│ ├── config | |
│ │ └── config.exs | |
│ ├── lib | |
│ │ └── support.ex | |
│ ├── mix.exs | |
│ └── test | |
│ ├── support_test.exs | |
│ └── test_helper.exs | |
├── config | |
│ └── config.exs | |
└── mix.exs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment