1
2
3
4
5
6
7
8
9
use anchor_lang::prelude::*;

#[account(zero_copy)]
#[derive(Default)]
#[repr(packed)]
pub struct PositionManagerState {
    /// Bump to identify PDA
    pub bump: u8,
}