pub trait Context: Send + Sync + Clone {
    fn get_verify_token(
        &self,
        app_id: u64
    ) -> Result<String, Box<dyn Error + Send + Sync>>; fn get_app_secret(
        &self,
        app_id: u64
    ) -> Result<String, Box<dyn Error + Send + Sync>>; }

Required Methods

Implementors