rustorm 0.0.5

A simple ORM and code generator for rust
1
2
3
4
5
6
pub mod country;
pub mod currency;
pub mod exchange_rate;
pub use self::country::Country;
pub use self::currency::Currency;
pub use self::exchange_rate::ExchangeRate;