Skip to content

Commit

Permalink
feat(API): Re-export datetime
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jan 23, 2018
1 parent 049092f commit 1ca16f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -58,4 +58,4 @@ pub mod interpreter;
pub use parser::{ParserBuilder, Parser};
pub use template::Template;
pub use error::Error;
pub use value::{Value, Object, Array, Index, Scalar};
pub use value::{Value, Object, Array, Index, Scalar, Date};
2 changes: 1 addition & 1 deletion src/value/mod.rs
Expand Up @@ -4,4 +4,4 @@ mod index;

pub use self::values::{Value, Array, Object};
pub use self::index::Index;
pub use self::scalar::Scalar;
pub use self::scalar::{Scalar, Date};

0 comments on commit 1ca16f5

Please sign in to comment.