new laptop setup

This commit is contained in:
2022-12-24 16:34:17 +01:00
parent 5b95621d04
commit 31b47e892d
55 changed files with 789 additions and 5 deletions
+9
View File
@@ -0,0 +1,9 @@
use actix_web::{HttpRequest, HttpResponse};
use crate::auth::jwt::JwtToken;
pub async fn get(req: HttpRequest) -> HttpResponse {
let token: JwtToken = JwtToken::decode_from_request(req).unwrap();
todo!();
}