瀏覽代碼

get nodes imported

Chris Mague 7 年之前
父節點
當前提交
00d42c6836
共有 2 個文件被更改,包括 5 次插入3 次删除
  1. 1 0
      lib/neoinfra.rb
  2. 4 3
      lib/neoinfra/nodes.rb

+ 1 - 0
lib/neoinfra.rb

@@ -15,4 +15,5 @@ module NeoInfra
   require 'neoinfra/accounts'
   require 'neoinfra/aws'
   require 'neoinfra/vpcs'
+  require 'neoinfra/nodes'
 end

+ 4 - 3
lib/neoinfra/nodes.rb

@@ -1,10 +1,11 @@
 # frozen_string_literal: true
 
+require 'neo4j'
+require 'neoinfra'
 require 'nodes'
 require 'accounts'
-require 'fog'
-require 'neo4j'
-require 'neoinfra/aws'
+require 'fog-aws'
+
 
 # NeoInfra Account information
 module NeoInfra