mod.rs 178 B

1234567891011
  1. mod offer;
  2. pub use offer::*;
  3. use steel::*;
  4. #[repr(u8)]
  5. #[derive(Clone, Copy, Debug, Eq, PartialEq, IntoPrimitive, TryFromPrimitive)]
  6. pub enum EscrowAccount {
  7. Offer = 0,
  8. }