Skip to content

Commit

Permalink
Update schema.rs for token-merge-minter
Browse files Browse the repository at this point in the history
  • Loading branch information
MightOfOaks committed Nov 1, 2024
1 parent dc4f35f commit e1daabc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contracts/minters/token-merge-minter/examples/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use cosmwasm_schema::{export_schema, remove_schemas, schema_for};

use sg4::StatusResponse;
use token_merge_minter::msg::{
ConfigResponse, ExecuteMsg, InstantiateMsg, MintCountResponse, MintableNumTokensResponse,
QueryMsg, StartTimeResponse,
ConfigResponse, ExecuteMsg, MintCountResponse, MintableNumTokensResponse, QueryMsg,
StartTimeResponse,
};
use token_merge_minter::state::Config;

Expand All @@ -16,7 +16,6 @@ fn main() {
create_dir_all(&out_dir).unwrap();
remove_schemas(&out_dir).unwrap();

export_schema(&schema_for!(InstantiateMsg), &out_dir);
export_schema(&schema_for!(ExecuteMsg), &out_dir);
export_schema(&schema_for!(QueryMsg), &out_dir);
export_schema(&schema_for!(Config), &out_dir);
Expand Down

0 comments on commit e1daabc

Please sign in to comment.