manta-server 2.0.0-beta.61

Manta HTTP server — single API that proxies to CSM / Ochami backends.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! `ClusterSessionTrait` (BOS session) impl for `StaticBackendDispatcher`.

use super::*;

impl ClusterSessionTrait for StaticBackendDispatcher {
  async fn post_template_session(
    &self,
    token: &str,
    bos_session: types::bos::session::BosSession,
  ) -> Result<BosSession, Error> {
    dispatch!(self, post_template_session, token, bos_session)
  }
}