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

Commit d46a4ad

Browse files
ci: add migrate logic (#20)
1 parent f370675 commit d46a4ad

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/entry_point/migrate.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
use cosmwasm_std::Empty;
2+
3+
use super::*;
4+
5+
#[cfg_attr(not(feature = "library"), entry_point)]
6+
pub fn migrate(_deps: DepsMut<ElysQuery>, _env: Env, _msg: Empty) -> StdResult<Response<ElysMsg>> {
7+
Ok(Response::new())
8+
}

0 commit comments

Comments
 (0)