dbflow 0.0.1

A work in progress
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[macro_use]
mod macros;

mod core;

pub use core::Project;

pub fn foo() {
  let _ = fmt!("...");
  let _ = Project {
    name: String::from("Test Project")
  };
  println!("Database Flow");
}