mirror of
https://github.com/logos-blockchain/lez-programs.git
synced 2026-05-19 07:29:32 +00:00
10 lines
187 B
Rust
10 lines
187 B
Rust
//! The Stablecoin Program implementation.
|
|
|
|
pub use stablecoin_core as core;
|
|
|
|
/// Open a new collateral-only position for a calling owner.
|
|
pub mod open_position;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|