Skip to content

Commit

Permalink
schema updates
Browse files Browse the repository at this point in the history
  • Loading branch information
simke9445 committed Nov 28, 2023
1 parent 049b61c commit 900d694
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use std::fs::create_dir_all;
use cosmwasm_schema::{export_schema, remove_schemas, schema_for};
use job_account_tracker::{
Account, AccountResponse, AccountsResponse, Config, ConfigResponse, ExecuteMsg, InstantiateMsg,
QueryMsg,
QueryMsg, FundingAccountResponse, FundingAccountsResponse,
};

fn main() {
Expand All @@ -19,6 +19,8 @@ fn main() {
export_schema(&schema_for!(Config), &out_dir);
export_schema(&schema_for!(AccountsResponse), &out_dir);
export_schema(&schema_for!(AccountResponse), &out_dir);
export_schema(&schema_for!(FundingAccountResponse), &out_dir);
export_schema(&schema_for!(FundingAccountsResponse), &out_dir);
export_schema(&schema_for!(ConfigResponse), &out_dir);
export_schema(&schema_for!(Account), &out_dir);
}

0 comments on commit 900d694

Please sign in to comment.