wtforms 0.0.1

A library for form validation and rendering, based on Python WTForms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[macro_use]
extern crate failure;
#[allow(unused_imports)]
#[macro_use]
extern crate wtforms_derive;

mod fields;
mod forms;

pub use wtforms_derive::*;
pub use fields::*;
pub use forms::*;