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
16
17
pub mod add_controller_to_mod;
pub mod controller_writer;
pub mod create_controllers;
pub mod create_create_controller;
pub mod create_delete_controller;
pub mod create_get_all_controller;
pub mod create_read_controllers;
pub mod create_update_controller;

pub use add_controller_to_mod::*;
pub use controller_writer::*;
pub use create_controllers::*;
pub use create_create_controller::*;
pub use create_delete_controller::*;
pub use create_get_all_controller::*;
pub use create_read_controllers::*;
pub use create_update_controller::*;