anya_core/api/
server.rs

1pub struct ApiServer;
2
3impl Default for ApiServer {
4    fn default() -> Self {
5        Self::new()
6    }
7}
8
9impl ApiServer {
10    pub fn new() -> Self {
11        Self
12    }
13}