sinan 0.1.0

A Boilerplate for Rapid Axum Web Service Deployment.
Documentation
1
2
3
4
5
6
7
use std::any::Any;

use crate::facades::Container;

pub trait Facade: Any + Send + Sync + Clone {
    fn new(container: &Container) -> Self;
}