aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/routes/auth/discord.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/routes/auth/discord.rs')
-rw-r--r--src/server/routes/auth/discord.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/server/routes/auth/discord.rs b/src/server/routes/auth/discord.rs
new file mode 100644
index 0000000..036a35a
--- /dev/null
+++ b/src/server/routes/auth/discord.rs
@@ -0,0 +1,11 @@
+use std::sync::Arc;
+
+use axum::{extract::State, response::IntoResponse};
+
+use crate::server::{driver::SellershutDriver, error::AppError};
+
+async fn auth(
+ State(client): State<Arc<dyn SellershutDriver>>,
+) -> Result<impl IntoResponse, AppError> {
+ Ok(())
+}