Edit test APIv0 endpoint

This commit is contained in:
BitHeaven 2024-03-22 15:09:42 +05:00
parent 56f6326833
commit abb2ac6c12

View File

@ -23,7 +23,7 @@ type DBPool = Arc<Pool<ConnectionMgrTcp>>;
pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json {
let uri: &str = req.uri().path().as_ref();
match &uri[7..uri.len()] {
"/test" => json!({"error": false, "msg": "test endpoint v0"}),
"/test" => json!({"error": false, "msg": "test"}),
"/auth" => auth(req, pool.clone()).await,
"/auth_get" => auth_get(req, pool.clone()).await,
_ => json!({"error": true, "msg": "No endpoint"})