chore: initial commit
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
pub mod v1;
|
||||
pub mod v2;
|
||||
@@ -0,0 +1,9 @@
|
||||
pub mod auth_controller;
|
||||
pub mod auth_middleware;
|
||||
pub mod auth_model;
|
||||
pub mod auth_repository;
|
||||
|
||||
pub use auth_controller::*;
|
||||
pub use auth_middleware::*;
|
||||
pub use auth_model::*;
|
||||
pub use auth_repository::*;
|
||||
@@ -0,0 +1,3 @@
|
||||
pub mod auth;
|
||||
|
||||
pub use auth::*;
|
||||
@@ -0,0 +1,9 @@
|
||||
pub mod apps;
|
||||
pub mod libs;
|
||||
pub mod utils;
|
||||
|
||||
pub use apps::v1;
|
||||
pub use apps::v2;
|
||||
|
||||
pub use libs::axum;
|
||||
pub use libs::seaorm;
|
||||
@@ -0,0 +1,2 @@
|
||||
pub mod axum;
|
||||
pub mod seaorm;
|
||||
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
pub mod password_hash;
|
||||
Reference in New Issue
Block a user