summaryrefslogtreecommitdiff
path: root/app/client/system/system.actions.js
blob: ff32fd63c1eee9ef7e9f406250682e3126ae694b (plain)
1
2
3
4
5
6
7
import * as socket from '../socket'
import types from '../types'

export const run = (cmd) => {
  socket.system.run_system_command(cmd)
  return { type: types.system.running_command, cmd }
}