diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-05-29 00:15:13 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-05-29 00:15:13 +0200 |
| commit | a77ddf4bf8ad8aeb91e2109a7c4a92149928b57b (patch) | |
| tree | bed9a31e1febb3824d4d273bd4821ab28449f82a /app/client/modules/samplernn | |
| parent | bdab187f3d385a6b96c24135679af468d1e7892b (diff) | |
adding migrations!!
Diffstat (limited to 'app/client/modules/samplernn')
| -rw-r--r-- | app/client/modules/samplernn/samplernn.actions.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/client/modules/samplernn/samplernn.actions.js b/app/client/modules/samplernn/samplernn.actions.js new file mode 100644 index 0000000..95fef8e --- /dev/null +++ b/app/client/modules/samplernn/samplernn.actions.js @@ -0,0 +1,9 @@ +import socket from '../../socket' +import types from '../../types' + +export const uploadFiles = (files) => { + return { type: types.samplernn.upload_files } +} +export const fetchURL = (url) => { + return { type: types.samplernn.fetch_url } +} |
