Private
Public Access
1
0

kordophoned: reorg: server impl in separate file, skeleton for conversations

This commit is contained in:
2025-02-12 00:26:32 -08:00
parent 6a7d376aa9
commit 68ff158d6c
5 changed files with 45 additions and 32 deletions

View File

@@ -1,6 +1,11 @@
pub mod endpoint;
mod server_impl;
pub mod interface {
pub static NAME: &str = "net.buzzert.kordophonecd";
pub static OBJECT_PATH: &str = "/net/buzzert/kordophone/Server";
}
mod interface {
#![allow(unused)]
pub const NAME: &str = "net.buzzert.kordophonecd";
pub const OBJECT_PATH: &str = "/net/buzzert/kordophonecd";
include!(concat!(env!("OUT_DIR"), "/kordophone-server.rs"));
}