account.rs 162 B

1234567891011
  1. use anchor_lang::prelude::*;
  2. #[account]
  3. #[derive(InitSpace)]
  4. pub struct Data {
  5. pub someone: Pubkey,
  6. }
  7. #[account]
  8. #[derive(InitSpace)]
  9. pub struct Another {}