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

7 lines
136 B
JavaScript

import { requestSession } from './sessions';
export function init () {
return (dispatch) => {
dispatch(requestSession());
};
}