conductor_rust 0.1.0-alpha.0

A library for building Conductor workers with Rust
Documentation
1
2
3
4
5
6
use async_trait::async_trait;

#[async_trait]
pub trait TokenProvider {
    async fn get_token(&self) -> Result<Option<String>, reqwest::Error>;
}