hyper/lib/actions/config.js

18 lines
283 B
JavaScript
Raw Normal View History

import {CONFIG_LOAD, CONFIG_RELOAD} from '../constants/config';
2016-07-13 12:44:24 -08:00
export function loadConfig(config) {
2016-07-13 12:44:24 -08:00
return {
type: CONFIG_LOAD,
config
};
}
export function reloadConfig(config) {
const now = Date.now();
2016-07-13 12:44:24 -08:00
return {
type: CONFIG_RELOAD,
config,
now
2016-07-13 12:44:24 -08:00
};
}