2022-07-31 13:47:18 +02:00
|
|
|
pub mod proto {
|
|
|
|
tonic::include_proto!("session");
|
|
|
|
}
|
|
|
|
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2022-08-03 18:51:56 +02:00
|
|
|
use tracing::debug;
|
2022-07-31 13:47:18 +02:00
|
|
|
|
2022-08-03 18:51:56 +02:00
|
|
|
use tonic::{Request, Response, Status};
|
2022-07-31 13:47:18 +02:00
|
|
|
|
2022-08-03 18:51:56 +02:00
|
|
|
use proto::session_server::Session;
|
2022-07-31 13:47:18 +02:00
|
|
|
use proto::{SessionRequest, SessionResponse};
|
|
|
|
|
|
|
|
use crate::actor::{
|
2022-08-29 02:48:09 +02:00
|
|
|
state::StateManager,
|
2022-07-31 13:47:18 +02:00
|
|
|
workspace::Workspace as WorkspaceInstance, // TODO fuck x2!
|
|
|
|
};
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct SessionService {
|
|
|
|
state: Arc<StateManager>,
|
|
|
|
}
|
|
|
|
|
2022-08-28 23:41:11 +02:00
|
|
|
// #[tonic::async_trait]
|
|
|
|
// impl Session for SessionService {
|
|
|
|
// }
|