generated from visoftsolutions/ksox-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bartosz Nowak
committed
Nov 2, 2023
1 parent
7252480
commit 0be30ec
Showing
5 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/rust.yml → .github/workflows/master_build.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Rust Build | ||
name: Master build | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
mod asset; | ||
mod balance; | ||
mod fraction; | ||
mod network; | ||
mod order; | ||
mod trade; | ||
mod user; | ||
mod fraction; | ||
|
||
pub use asset::AssetRaw; | ||
pub use balance::BalanceRaw; | ||
pub use fraction::Fraction; | ||
pub use network::Network; | ||
pub use order::OrderRaw; | ||
pub use trade::TradeRaw; | ||
pub use user::UserRaw; | ||
pub use fraction::Fraction; |