mirror of
https://github.com/d0zingcat/ore.git
synced 2026-05-15 07:26:45 +00:00
20 lines
371 B
Rust
20 lines
371 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::sdk::*;
|
|
pub use crate::state::*;
|
|
}
|
|
|
|
use steel::*;
|
|
|
|
declare_id!("oreV3EG1i9BEgiAJ8b177Z2S2rMarzak4NMv1kULvWv");
|