Skip to content

Commit

Permalink
fix: fixed nested config bug
Browse files Browse the repository at this point in the history
  • Loading branch information
juicycleff committed Jul 25, 2023
1 parent 45d554b commit 31adfdb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/north-derives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "north-derives"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
authors = ["Rex Raphael <[email protected]>"]
description = "North config is a multi source configuration crate designed as part of the North Microservice Framework"
Expand Down
8 changes: 4 additions & 4 deletions crates/north-derives/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ pub fn process_poem(input: TokenStream) -> TokenStream {
}

fn process_poem_impl(router: Ident, state: ExprArray) -> TokenStream {
println!("******************************");
println!("Helllo sdsd");
println!("******************************");
// println!("******************************");
// println!("Helllo sdsd");
// println!("******************************");


// let assert_sync = quote_spanned! {ty.span()=>
// state.span()
// };

for s in state.elems {
println!("Helllo yessss");
// println!("Helllo yessss");
}
let expanded = quote! {
#router.with(AddData::new(""))
Expand Down

0 comments on commit 31adfdb

Please sign in to comment.