use anchor_lang::prelude::*;
use crate::CandyMachine;
pub fn withdraw(_ctx: Context<Withdraw>) -> Result<()> {
Ok(())
}
#[derive(Accounts)]
pub struct Withdraw<'info> {
#[account(mut, close = authority, has_one = authority)]
candy_machine: Account<'info, CandyMachine>,
#[account(mut)]
authority: Signer<'info>,
}