# Default File Structure

* Can make a plug folder in web and then include in router.ex
* Can import things in discuss\_web.ex that will then be available in all views/controllers

├── build ├── assets ├── config ├── deps ├── lib └── hello └── hello\_web └── hello.ex └── hello\_web.ex ├── priv ├── test

Lib/hello\_web

```
├── channels
│   └── user_socket.ex
├── controllers
│   └── page_controller.ex
├── templates
│   ├── layout
│   │   └── app.html.eex
│   └── page
│       └── index.html.eex
└── views
│   ├── error_helpers.ex
│   ├── error_view.ex
│   ├── layout_view.ex
│   └── page_view.ex
├── endpoint.ex
├── gettext.ex
├── router.ex
```
