This commit is contained in:
Paul Makles
2020-01-19 14:22:52 +00:00
parent 8c41a0d00c
commit 56631f99b2
9 changed files with 754 additions and 18 deletions

View File

@@ -4,5 +4,5 @@ mod account;
pub fn mount(rocket: Rocket) -> Rocket {
rocket
.mount("/api/v1", routes![account::root, account::reg])
.mount("/api/account", routes![ account::root, account::create ])
}