rjango 0.1.1

A full-stack Rust backend framework inspired by Django
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum CoreError {
    #[error("Signing error: {0}")]
    SigningError(String),
    #[error("Bad signature")]
    BadSignature,
    #[error("Signature expired")]
    SignatureExpired,
    #[error("Improperly configured: {0}")]
    ImproperlyConfigured(String),
}