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