Skip to content

Commit

Permalink
Update schema.rs for token-merge-factory
Browse files Browse the repository at this point in the history
  • Loading branch information
MightOfOaks committed Nov 1, 2024
1 parent e1daabc commit e4d59ec
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions contracts/factories/token-merge-factory/examples/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ use std::fs::create_dir_all;

use cosmwasm_schema::{export_schema, remove_schemas, schema_for};

use sg2::query::Sg2QueryMsg;
use token_merge_factory::msg::InstantiateMsg;
use token_merge_factory::msg::{InstantiateMsg, QueryMsg};

fn main() {
let mut out_dir = current_dir().unwrap();
Expand All @@ -13,5 +12,5 @@ fn main() {
remove_schemas(&out_dir).unwrap();

export_schema(&schema_for!(InstantiateMsg), &out_dir);
export_schema(&schema_for!(Sg2QueryMsg), &out_dir);
export_schema(&schema_for!(QueryMsg), &out_dir);
}

0 comments on commit e4d59ec

Please sign in to comment.