summaryrefslogtreecommitdiff
path: root/app/client/modules/index.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-26 01:28:41 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-26 01:28:41 +0200
commit8d06839056967e8786c63976545aff098ae2f128 (patch)
tree51c83236b2dcc5a6adabb1b4036eccfff63b9ef5 /app/client/modules/index.js
parentbd354556f98aa724dd6cee03a1828bd40ce01f33 (diff)
morph module.. enum method for sliders
Diffstat (limited to 'app/client/modules/index.js')
-rw-r--r--app/client/modules/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/client/modules/index.js b/app/client/modules/index.js
index 6cc6cd4..14a2333 100644
--- a/app/client/modules/index.js
+++ b/app/client/modules/index.js
@@ -1,8 +1,9 @@
+import morph from './morph'
import pix2pix from './pix2pix'
import pix2pixhd from './pix2pixhd'
import pix2wav from './pix2wav'
import samplernn from './samplernn'
export default {
- pix2pix, pix2pixhd, pix2wav, samplernn
+ morph, pix2pix, pix2pixhd, pix2wav, samplernn
}