Skip to main content

tachyon_types/
pin.rs

1use myko_macros::myko_item;
2
3use crate::PlaybookId;
4
5#[myko_item]
6pub struct Pin {
7    pub playbook_id: PlaybookId,
8    pub locked: bool,
9}