rustyroad 1.0.26

Rusty Road is a framework written in Rust that is based on Ruby on Rails. It is designed to provide the familiar conventions and ease of use of Ruby on Rails, while also taking advantage of the performance and efficiency of Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod config_writers;
pub mod controllers;
pub mod create_file;
pub mod env;
pub mod models;
pub mod new_project;
pub mod views;

pub use config_writers::*;
pub use controllers::*;
pub use create_file::*;
pub use env::*;
pub use models::*;
pub use new_project::*;
pub use views::*;