mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
8 lines
136 B
JavaScript
8 lines
136 B
JavaScript
|
|
import { requestSession } from './sessions';
|
||
|
|
|
||
|
|
export function init () {
|
||
|
|
return (dispatch) => {
|
||
|
|
dispatch(requestSession());
|
||
|
|
};
|
||
|
|
}
|