Mountain/RPC/CocoonService/Auth/
GetAuthenticationSession.rs1use tonic::{Response, Status};
7use ::Vine::Generated::{GetAuthenticationSessionRequest, GetAuthenticationSessionResponse};
8
9use crate::{RPC::CocoonService::CocoonServiceImpl, dev_log};
10
11pub async fn Fn(
12 _Service:&CocoonServiceImpl,
13
14 Request:GetAuthenticationSessionRequest,
15) -> Result<Response<GetAuthenticationSessionResponse>, Status> {
16 dev_log!(
17 "cocoon",
18 "[CocoonService] get_authentication_session: provider={}",
19 Request.provider_id
20 );
21
22 Ok(Response::new(GetAuthenticationSessionResponse::default()))
23}