nci/static/js/app/actions/project.js

11 lines
139 B
JavaScript
Raw Normal View History

2015-05-03 23:04:51 +00:00
'use strict';
define(['reflux'], function(Reflux) {
var Actions = Reflux.createActions([
2015-05-07 20:53:46 +00:00
'run',
2015-05-03 23:04:51 +00:00
'readAll'
]);
return Actions;
});