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