Skip to content

Commit

Permalink
Merge pull request #93 from hussein-aitlahcen/patch-1
Browse files Browse the repository at this point in the history
make sg types public
  • Loading branch information
shanev authored May 22, 2024
2 parents 2c97cd9 + dd5b7ad commit 3eb6f72
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions contracts/ics721-base/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod execute;
mod ibc;
mod query;
mod state;
pub mod execute;
pub mod ibc;
pub mod query;
pub mod state;

#[cfg(not(feature = "library"))]
use cosmwasm_std::entry_point;
Expand Down
8 changes: 4 additions & 4 deletions contracts/sg-ics721/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
mod execute;
mod ibc;
mod query;
mod state;
pub mod execute;
pub mod ibc;
pub mod query;
pub mod state;

#[cfg(not(feature = "library"))]
use cosmwasm_std::entry_point;
Expand Down

0 comments on commit 3eb6f72

Please sign in to comment.