Skip to main content

sol_parser_sdk/core/events/
mod.rs

1//! 所有具体的事件类型定义
2//!
3//! 基于您提供的回调事件列表,定义所有需要的具体事件类型
4
5mod types;
6mod enum_impl;
7
8pub use types::*;
9pub use enum_impl::DexEvent;