This commit is contained in:
xqtc 2024-10-14 19:02:22 +02:00
parent 3871fe206c
commit 8960c3b1df
2 changed files with 13 additions and 0 deletions

7
server/Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "meowlog-server"
version = "0.1.0"
edition = "2021"
[dependencies]
tonic = "0.4.0"

6
server/src/main.rs Normal file
View file

@ -0,0 +1,6 @@
use tonic;
fn main() {
let addr = "[::1]:50051".parse();
println!("Hello, world!");
}