Start Auth Library

Auth will talk to pocketbase
This commit is contained in:
2024-06-29 21:45:05 -04:00
Unverified
parent 818bec067f
commit 58b38f3d2d
7 changed files with 91 additions and 2 deletions

5
auth/src/types.rs Normal file
View File

@@ -0,0 +1,5 @@
#[tarpc::service]
pub trait RealmAuth {
async fn test(name: String) -> String;
}