(input: CreateGithubSessionInput)
| 24 | |
| 25 | impl CreateGithubSession { |
| 26 | pub fn new(input: CreateGithubSessionInput) -> Self { |
| 27 | Self { input } |
| 28 | } |
| 29 | |
| 30 | pub async fn call(&self, pool: &PgPool) -> Result<CreateSessionResult> { |
| 31 | // The actor in this case is the downstream server, whose identity was verified by comparing |
nothing calls this directly
no outgoing calls
no test coverage detected