1
2
3
4
5
6
7
8
9
10
11
//! Control module for the `jet-fixed-term-market` program.
//!
//! Handles initialization of program state including the [`Market`](struct@crate::control::state::Market) and program authority signer

/// Program instructions for the control module
pub mod instructions;
/// State utilities and structs for the control module
pub mod state;

/// Anchor events
pub(crate) mod events;