mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 15:10:13 +00:00
21 lines
356 B
Rust
21 lines
356 B
Rust
mod bus;
|
|
mod config;
|
|
mod proof;
|
|
mod treasury;
|
|
|
|
pub use bus::*;
|
|
pub use config::*;
|
|
pub use proof::*;
|
|
pub use treasury::*;
|
|
|
|
use num_enum::{IntoPrimitive, TryFromPrimitive};
|
|
|
|
#[repr(u8)]
|
|
#[derive(Clone, Copy, Debug, Eq, PartialEq, IntoPrimitive, TryFromPrimitive)]
|
|
pub enum OreAccount {
|
|
Bus = 100,
|
|
Config = 101,
|
|
Proof = 102,
|
|
Treasury = 103,
|
|
}
|