eosio_codegen/
lib.rs

1#[macro_use]
2mod error;
3
4mod fixedstring;
5mod name;
6
7mod action;
8mod table;
9mod attrs;
10mod contract;
11mod contract_tests;
12
13pub use self::{
14    contract::Contract,
15    fixedstring::FixedString,
16};