Use proper directory structure for Phoenix

This commit is contained in:
José Valim 2017-10-03 19:00:03 +02:00 committed by GitHub
parent c2ce93cca6
commit d09df077da
1 changed files with 9 additions and 9 deletions

View File

@ -36,15 +36,15 @@ See: [Installation](https://hexdocs.pm/phoenix/installation.html) _(hexdocs.pm)_
├── deps/
├── lib/
│ ├── hello/
└── hello_web/
├── channels/
├── controllers/
├── templates/
├── views/
├── router.ex
└── gettext.ex
├── hello.ex
── hello_web.ex
├── hello.ex
├── hello_web/
│ ├── channels/
│ ├── controllers/
│ ├── templates/
│ ├── views/
│ ├── router.ex
│ │ └── gettext.ex
│ └── hello_web.ex
├── priv/
└── test/
```