Skip to content
This repository has been archived by the owner on Dec 29, 2023. It is now read-only.

Commit

Permalink
ci: fix migrate
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-vagabond committed Dec 21, 2023
1 parent d46a4ad commit a6c28c6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/entry_point/migrate.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
use cosmwasm_std::Empty;
use cosmwasm_std::{
entry_point,
};

use super::*;
use elys_bindings::*;

#[cfg_attr(not(feature = "library"), entry_point)]
pub fn migrate(_deps: DepsMut<ElysQuery>, _env: Env, _msg: Empty) -> StdResult<Response<ElysMsg>> {
Expand Down
2 changes: 2 additions & 0 deletions src/entry_point/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ use cosmwasm_std::{
};

mod instantiate;
mod migrate;
mod query;

pub use instantiate::instantiate;
pub use migrate::migrate;
pub use query::query;

0 comments on commit a6c28c6

Please sign in to comment.