pub use {
anchor_lang::prelude::*,
hpl_attribute_event::event,
spl_account_compression::{wrap_application_data_v1, Noop},
};
declare_id!("EventNxhSA3AcXD14PmXaYUiNQWwoKbLeGHtwydixRzX");
#[cfg(not(feature = "no-entrypoint"))]
use anchor_lang::solana_program::{entrypoint, entrypoint::ProgramResult};
#[cfg(not(feature = "no-entrypoint"))]
entrypoint!(hpl_events);
#[cfg(not(feature = "no-entrypoint"))]
pub fn hpl_events(
_program_id: &Pubkey,
_accounts: &[AccountInfo],
_instruction_data: &[u8],
) -> ProgramResult {
Ok(())
}
#[derive(Clone)]
pub struct HplEvents;
impl anchor_lang::Id for HplEvents {
fn id() -> Pubkey {
crate::id()
}
}