solana_system_program/
lib.rs

1#![allow(clippy::arithmetic_side_effects)]
2pub mod system_instruction;
3pub mod system_processor;
4
5use solana_sdk_ids::system_program;
6pub use {
7    solana_nonce_account::{get_system_account_kind, SystemAccountKind},
8    system_program::id,
9};