diff options
Diffstat (limited to 'controller/zt1-controller-client/test-controller.js')
-rw-r--r-- | controller/zt1-controller-client/test-controller.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/controller/zt1-controller-client/test-controller.js b/controller/zt1-controller-client/test-controller.js deleted file mode 100644 index cddff031..00000000 --- a/controller/zt1-controller-client/test-controller.js +++ /dev/null @@ -1,14 +0,0 @@ -var ZT1ControllerClient = require('./index.js').ZT1ControllerClient; - -var zt1c = new ZT1ControllerClient('http://127.0.0.1:9993/','5d6181b71fae2684f9cc64ed'); - -zt1c.status(function(err,status) { - if (err) - console.log(err); - console.log(status); - zt1c.listNetworks(function(err,networks) { - if (err) - console.log(err); - console.log(networks); - }); -}); |