1use actix::prelude::*; 2 3use crate::client::unified::Server; 4 5impl Actor for Server { 6 type Context = SyncContext<Self>; 7}