Skip to content

Commit

Permalink
renaming encoding modules
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Nov 7, 2024
1 parent 6f9d4db commit 9e0c55e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sia/src/encoding.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
mod v1_encoding;
mod v2_encoding;
mod v1;
mod v2;

pub use sia_sdk_derive::{SiaDecode, SiaEncode};
pub use v2_encoding::{Error, Result, SiaDecodable, SiaEncodable};
pub use v2::{Error, Result, SiaDecodable, SiaEncodable};

pub use sia_sdk_derive::{V1SiaDecode, V1SiaEncode};
pub use v1_encoding::{V1SiaDecodable, V1SiaEncodable};
pub use v1::{V1SiaDecodable, V1SiaEncodable};
File renamed without changes.
File renamed without changes.

0 comments on commit 9e0c55e

Please sign in to comment.