hyper/app/lib/actions/config.js
Guillermo Rauch 477e40e433 refactor
2016-07-13 13:45:14 -07:00

15 lines
252 B
JavaScript

import { CONFIG_LOAD, CONFIG_RELOAD } from '../constants/config';
export function loadConfig (config) {
return {
type: CONFIG_LOAD,
config
};
}
export function reloadConfig (config) {
return {
type: CONFIG_RELOAD,
config
};
}