mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 22:15:07 +00:00
12 lines
164 B
JavaScript
12 lines
164 B
JavaScript
'use strict';
|
|
|
|
define(['reflux'], function(Reflux) {
|
|
var Actions = Reflux.createActions([
|
|
'readTerminalOutput',
|
|
'readAll',
|
|
'read'
|
|
]);
|
|
|
|
return Actions;
|
|
});
|