wrote server stub

This commit is contained in:
2024-06-13 15:42:59 -04:00
Unverified
parent e643b6b8f6
commit caf4c0e6af
6 changed files with 70 additions and 2 deletions

4
server/src/types.rs Normal file
View File

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