add auth module

This commit is contained in:
bitfl0wer 2023-04-16 15:07:15 +02:00
parent 157b351db9
commit 4d10710f4f
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
5 changed files with 8 additions and 2 deletions

1
src/api/auth/login.rs Normal file
View File

@ -0,0 +1 @@
pub mod login {}

5
src/api/auth/mod.rs Normal file
View File

@ -0,0 +1,5 @@
pub mod login;
pub mod register;
pub use login::*;
pub use register::*;

1
src/api/auth/register.rs Normal file
View File

@ -0,0 +1 @@
pub mod register {}

View File

@ -1,3 +1,4 @@
pub mod auth;
pub mod policies;
pub mod schemas;

View File

@ -1,5 +1,3 @@
// src/api/policies/instance/mod.rs
pub mod limits;
pub use limits::*;