summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2018-11-18 19:47:08 -0800
committerNick Van Doorn <vandoorn.nick@gmail.com>2018-11-18 19:47:08 -0800
commitd8e72d572c2bb923fcaa86040d44272c18038a65 (patch)
treed2dca5b7782ae36f92bebd1d9ed6ea3e188a8f62
parent3c1c45c0dc56372911bb4f8e4227fb97f0a8bc66 (diff)
Factor t3200m into it\'s own package
-rw-r--r--src/adapters/actiontec-t3200m.ts2
-rw-r--r--src/adapters/actiontec-t3200m/actiontec-t3200m.ts2
-rw-r--r--src/adapters/actiontec-t3200m/index.ts1
-rw-r--r--src/adapters/actiontec-t3200m/package.json6
4 files changed, 9 insertions, 2 deletions
diff --git a/src/adapters/actiontec-t3200m.ts b/src/adapters/actiontec-t3200m.ts
deleted file mode 100644
index a1ef674..0000000
--- a/src/adapters/actiontec-t3200m.ts
+++ /dev/null
@@ -1,2 +0,0 @@
-import { Adapter } from '../models/adapter.model'
-export class ActiontecTS3200M implements Adapter {}
diff --git a/src/adapters/actiontec-t3200m/actiontec-t3200m.ts b/src/adapters/actiontec-t3200m/actiontec-t3200m.ts
new file mode 100644
index 0000000..0bc2391
--- /dev/null
+++ b/src/adapters/actiontec-t3200m/actiontec-t3200m.ts
@@ -0,0 +1,2 @@
+import { Adapter } from '../../models/adapter.model'
+export class ActiontecTS3200M implements Adapter {}
diff --git a/src/adapters/actiontec-t3200m/index.ts b/src/adapters/actiontec-t3200m/index.ts
new file mode 100644
index 0000000..fada54a
--- /dev/null
+++ b/src/adapters/actiontec-t3200m/index.ts
@@ -0,0 +1 @@
+export { ActiontecTS3200M } from './actiontec-t3200m'
diff --git a/src/adapters/actiontec-t3200m/package.json b/src/adapters/actiontec-t3200m/package.json
new file mode 100644
index 0000000..0e3e3c2
--- /dev/null
+++ b/src/adapters/actiontec-t3200m/package.json
@@ -0,0 +1,6 @@
+{
+ "name": "pipefitter-adapter-actiontec-t3200m",
+ "version": "1.0.0",
+ "main": "index.js",
+ "license": "MIT"
+}