1
2
3
4
5
6
7
8
9
10
use aligned_sized::aligned_sized;
use anchor_lang::{prelude::*, solana_program::pubkey::Pubkey};

#[account]
#[aligned_sized(anchor)]
#[derive(Debug)]
pub struct GroupAuthority {
    pub authority: Pubkey,
    pub seed: Pubkey,
}