-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
86 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pub(crate) use local_tracing::*; | ||
|
||
mod local_tracing; | ||
|
||
pub(crate) use local_tracing::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pub(crate) use conn::*; | ||
|
||
mod conn; | ||
|
||
pub(crate) use conn::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
pub(crate) use discord::*; | ||
pub(crate) use user::*; | ||
pub(crate) use verify::*; | ||
|
||
mod discord; | ||
mod user; | ||
mod verify; | ||
|
||
pub(crate) use discord::*; | ||
pub(crate) use user::*; | ||
pub(crate) use verify::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
use ntex::web::HttpResponse; | ||
|
||
pub(crate) mod admin; | ||
pub(crate) mod auth; | ||
pub(crate) mod championships; | ||
pub(crate) mod user; | ||
|
||
use ntex::web::HttpResponse; | ||
|
||
pub(crate) async fn system_health_check() -> HttpResponse { | ||
HttpResponse::Ok().finish() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
pub(crate) use admin::*; | ||
pub(crate) use authenticated::*; | ||
pub(crate) use login::*; | ||
|
||
mod admin; | ||
mod authenticated; | ||
mod login; | ||
|
||
pub(crate) use admin::*; | ||
pub(crate) use authenticated::*; | ||
pub(crate) use login::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
pub(crate) use admin::*; | ||
pub(crate) use api::*; | ||
|
||
mod admin; | ||
mod api; | ||
|
||
pub(crate) use admin::*; | ||
pub(crate) use api::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pub(crate) use app::*; | ||
|
||
mod app; | ||
|
||
pub(crate) use app::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
mod championship; | ||
mod driver; | ||
mod race; | ||
mod result; | ||
mod user; | ||
|
||
pub use championship::*; | ||
pub use driver::*; | ||
#[allow(unused)] | ||
pub use race::*; | ||
#[allow(unused)] | ||
pub use result::*; | ||
pub use user::*; | ||
|
||
mod championship; | ||
mod driver; | ||
mod race; | ||
mod result; | ||
mod user; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
pub use championship::*; | ||
pub use discord::*; | ||
pub use driver::*; | ||
pub use server::*; | ||
pub use user::*; | ||
|
||
mod championship; | ||
mod discord; | ||
mod driver; | ||
mod server; | ||
mod user; | ||
|
||
pub use championship::*; | ||
pub use discord::*; | ||
pub use driver::*; | ||
pub use server::*; | ||
pub use user::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
pub use championship::*; | ||
pub use driver::*; | ||
pub use email::*; | ||
pub use user::*; | ||
|
||
mod championship; | ||
mod driver; | ||
mod email; | ||
mod user; | ||
|
||
pub use championship::*; | ||
pub use driver::*; | ||
pub use email::*; | ||
pub use user::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
pub use auth::*; | ||
pub use championship::*; | ||
pub use server::*; | ||
pub use templates::*; | ||
pub use user::*; | ||
|
||
mod auth; | ||
mod championship; | ||
mod server; | ||
mod templates; | ||
mod user; | ||
|
||
pub use auth::*; | ||
pub use championship::*; | ||
pub use server::*; | ||
pub use templates::*; | ||
pub use user::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters