system_program.rs 217 B

12345678910111213
  1. use crate::*;
  2. use solana_program::pubkey::Pubkey;
  3. pub use solana_program::system_program::ID;
  4. #[derive(Debug, Clone)]
  5. pub struct System;
  6. impl anchor_lang::Id for System {
  7. fn id() -> Pubkey {
  8. ID
  9. }
  10. }