aboutsummaryrefslogtreecommitdiff
path: root/macros/src
diff options
context:
space:
mode:
Diffstat (limited to 'macros/src')
-rw-r--r--macros/src/check.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/macros/src/check.rs b/macros/src/check.rs
index b8e6edd8..1dac363f 100644
--- a/macros/src/check.rs
+++ b/macros/src/check.rs
@@ -1,14 +1,13 @@
use std::collections::HashMap;
-use quote::Tokens;
-use syn::Ident;
+use syn::{Ident, Path};
use syntax::check::{self, Idle, Init};
use syntax::{self, Idents, Statics};
use syntax::error::*;
pub struct App {
- pub device: Tokens,
+ pub device: Path,
pub idle: Idle,
pub init: Init,
pub resources: Statics,