Add onboarding and FromRequest for User.

This commit is contained in:
Paul Makles
2020-12-28 21:47:32 +00:00
parent 16c5a28637
commit 798047625a
13 changed files with 236 additions and 88 deletions

View File

@@ -1,9 +1,11 @@
use rocket::Route;
mod hello;
mod complete;
pub fn routes() -> Vec<Route> {
routes! [
hello::req
hello::req,
complete::req
]
}