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
12
13
use sea_orm::sea_query::{Alias, Func, SimpleExpr};

pub mod comparison;
pub mod datetime;
pub mod math;
pub mod text;
pub mod window;

pub use self::{comparison::*, datetime::*, math::*, text::*, window::*};

pub(crate) fn custom_function(name: &str, args: Vec<SimpleExpr>) -> SimpleExpr {
    Func::cust(Alias::new(name)).args(args).into()
}