fr-rust 0.1.0

A comprehensive framework/utility library for Actix-web, Postgres, Redis, and authentication.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use actix_web::{Error, HttpRequest, HttpResponse};
use actix_files::NamedFile;

pub type Rlt = Result<(), Error>;

pub type Rsp = HttpResponse;

pub type RltRsp = Result<HttpResponse, Error>;

pub type Rqs = HttpRequest;

pub type MainRlt = std::io::Result<()>;

pub type FileRlt = Result<NamedFile, Error>;