File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ pub use crate :: monolith:: * ;
Original file line number Diff line number Diff line change 1+ pub use crate :: monolith:: * ;
Original file line number Diff line number Diff line change 1- #![ no_std]
2- #![ allow( dead_code) ]
3- #![ allow( deprecated) ]
4- #![ allow(
5- clippy:: clone_on_copy,
6- clippy:: collapsible_if,
7- clippy:: len_zero,
8- clippy:: module_inception,
9- clippy:: needless_borrows_for_generic_args,
10- clippy:: too_many_arguments,
11- clippy:: unnecessary_cast,
12- clippy:: unnecessary_lazy_evaluations
13- ) ]
1+ #![ no_std]
142
3+ mod monolith;
4+
5+ pub mod access;
6+ pub mod events;
7+ pub mod execution;
8+ pub mod oracle;
9+ pub mod storage;
10+ pub mod types;
11+ pub mod vrf;
12+ pub mod yield;
13+
14+ pub use access:: * ;
15+ pub use events:: * ;
16+ pub use execution:: * ;
17+ pub use oracle:: * ;
18+ pub use storage:: * ;
19+ pub use types:: * ;
20+ pub use vrf:: * ;
21+ pub use yield:: * ;
1522pub mod events;
1623
1724use soroban_sdk:: {
You can’t perform that action at this time.
0 commit comments