1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod clock;
pub mod instruction;

pub use cronos_program::errors;
pub use cronos_program::pda;
pub use cronos_program::state as account;

// Export current solana-program types for downstream users who may also be
// building with a different solana-program version
pub use solana_program;

// The library uses this to verify the keys
solana_program::declare_id!(cronos_program::ID);