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