aboutsummaryrefslogtreecommitdiff
path: root/macros/src/injectable_macro_args.rs
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-07-20 14:29:45 +0200
committerHampusM <hampus@hampusmat.com>2022-07-20 14:29:45 +0200
commit2d1a6b2d432408d74eb57e0bda3f7434617e1070 (patch)
tree7e21f8126edfdfd9c40b4b51ba5626c6440442d9 /macros/src/injectable_macro_args.rs
parent7863d9859a5cbce99c3769e4fdb40283115d358d (diff)
refactor: reorganize folder hierarchy
Diffstat (limited to 'macros/src/injectable_macro_args.rs')
-rw-r--r--macros/src/injectable_macro_args.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/macros/src/injectable_macro_args.rs b/macros/src/injectable_macro_args.rs
new file mode 100644
index 0000000..4ef4389
--- /dev/null
+++ b/macros/src/injectable_macro_args.rs
@@ -0,0 +1,17 @@
+use syn::parse::{Parse, ParseStream};
+use syn::TypePath;
+
+pub struct InjectableMacroArgs
+{
+ pub interface: TypePath,
+}
+
+impl Parse for InjectableMacroArgs
+{
+ fn parse(input: ParseStream) -> syn::Result<Self>
+ {
+ Ok(Self {
+ interface: input.parse()?,
+ })
+ }
+}