summaryrefslogtreecommitdiff
path: root/app/client/modules/samplernn/samplernn.actions.js
blob: 1e0e3a6bf598c37dcbba4c2e0a60120464030287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 }
}

export const uploadFiles = (files) => {
  return dispatch => {
    // return { type: types.samplernn.upload_files }

  }
}

// export const fetchURL = (url) => { type: types.samplernn.fetch_url }