triggr-program 0.1.1

Created with Anchor
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// only export new state modules here

mod program;
mod statistics;
mod task;
mod temp;
pub mod trigger;
mod user;

// ----------------STATE TYPES----------------- //

pub use program::*;
pub use statistics::*;
pub use task::*;
pub use temp::*;
pub use trigger::*;
pub use user::*;