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