simpleg-core 0.1.5

Core utilities for SimpleG
Documentation
1
2
3
4
5
6
7
8
9
use async_trait::async_trait;
use serde_json::Value;

use crate::error::Error;

#[async_trait]
pub trait SecretsManager {
    async fn get(&mut self, secret_id: String) -> Result<Value, Error>;
}