fej/README.md

27 lines
939 B
Markdown
Raw Normal View History

2021-03-13 22:11:26 +01:00
# Fej
2021-03-04 11:55:24 +01:00
2021-03-13 22:11:26 +01:00
Fej is an API written in Rust. I started this project to learn the language,
and really just have some fun.
2021-03-11 12:16:28 +01:00
## Project Structure
The folder structure follows the structure of the URLs, e.g. the route for
`/hello/world` is found in the module `src/hello`.
Each module contains the following base files:
* `mod.rs`: defines the modules' content, and contains the route definitions.
The route functions themselves only contain the functionality needed to
represent the data, not acquire it.
* `controller.rs`: this file contains the actual logic of each route. If the
logic becomes too complicated to be contained inside a single file,
`controller.rs` becomes its own module folder named `controller`.
* `tests.rs`: this contains tests for the specific module. This can also be a
module directory if need be.
Every module has a `routes` function that returns its route macros.
2021-03-23 13:47:57 +01:00
## Roadmap
See [roadmap.md](roadmap.md).