mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-14 07:26:51 +00:00
19 lines
345 B
Rust
19 lines
345 B
Rust
pub mod consts;
|
|
pub mod error;
|
|
pub mod event;
|
|
pub mod instruction;
|
|
pub mod sdk;
|
|
pub mod state;
|
|
|
|
pub mod prelude {
|
|
pub use crate::consts::*;
|
|
pub use crate::error::*;
|
|
pub use crate::event::*;
|
|
pub use crate::instruction::*;
|
|
pub use crate::state::*;
|
|
}
|
|
|
|
use steel::*;
|
|
|
|
declare_id!("EmxGq9Bj8q6V998KDq3v19ch2DnARwhcNL2uXtgDFbra");
|