blob: 8dc9ec65e7f0e6441ea9336f5ba4a0e19507494f [file] [log] [blame]
import { LOG_IN, LOG_OUT } from '../constants/ActionTypes';
export function logIn () {
return { type : LOG_IN };
}
export function logOut () {
return { type : LOG_OUT };
}