manta_server/backend_dispatcher/cluster_session.rs
1//! `ClusterSessionTrait` (BOS session) impl for `StaticBackendDispatcher`.
2
3use super::*;
4
5impl ClusterSessionTrait for StaticBackendDispatcher {
6 async fn post_template_session(
7 &self,
8 token: &str,
9 bos_session: types::bos::session::BosSession,
10 ) -> Result<BosSession, Error> {
11 dispatch!(self, post_template_session, token, bos_session)
12 }
13}