Node class
diff --git a/nodes/fuel.py b/nodes/fuel.py
index 20390aa..76dedcd 100644
--- a/nodes/fuel.py
+++ b/nodes/fuel.py
@@ -1,3 +1,4 @@
+import node
 import fuel_rest_api
 
 
@@ -6,4 +7,4 @@
     connection = fuel_rest_api.KeystoneAuth(root_url, credentials)
     fi = fuel_rest_api.FuelInfo(connection)
 
-    return fi.nodes
\ No newline at end of file
+    return [node.Node(n.ip, n.get_roles()) for n in fi.nodes]
\ No newline at end of file