gitextract_gpb2a5y3/ ├── .github/ │ └── dependabot.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── diesel.toml ├── migrations/ │ ├── .gitkeep │ ├── 00000000000000_diesel_initial_setup/ │ │ ├── down.sql │ │ └── up.sql │ └── 20170211131857_create_initial_db/ │ ├── down.sql │ └── up.sql ├── reset.sh ├── src/ │ ├── api/ │ │ ├── auth.rs │ │ ├── hello.rs │ │ └── mod.rs │ ├── bin/ │ │ └── runner.rs │ ├── config.rs │ ├── database.rs │ ├── handlers.rs │ ├── lib.rs │ ├── models/ │ │ ├── mod.rs │ │ └── user.rs │ ├── responses.rs │ ├── schema.rs │ └── validation/ │ ├── mod.rs │ └── user.rs ├── tests/ │ ├── common/ │ │ └── mod.rs │ ├── factories/ │ │ └── mod.rs │ ├── test_api_auth.rs │ └── test_api_hello.rs └── watch.sh