use crate::state::FiberState;
use anchor_lang::prelude::*;
#[derive(Accounts)]
pub struct Close<'info> {
#[account(mut)]
pub thread: Signer<'info>,
#[account(mut, has_one = thread, close = thread)]
pub fiber: Account<'info, FiberState>,
}
pub fn close(_ctx: Context<Close>) -> Result<()> {
Ok(())
}