gpl-math 0.1.0

Gemachain Program Library Math
Documentation
//! Program entrypoint

#![cfg(not(feature = "no-entrypoint"))]

use gemachain_program::{
    account_info::AccountInfo, entrypoint, entrypoint::ProgramResult, pubkey::Pubkey,
};

entrypoint!(process_instruction);
fn process_instruction(
    program_id: &Pubkey,
    accounts: &[AccountInfo],
    instruction_data: &[u8],
) -> ProgramResult {
    crate::processor::process_instruction(program_id, accounts, instruction_data)
}