import * as types from '../constants/types';
import { APP } from './actionsTypes';
export function appStart(root, text) {
return {
type: APP.START,
root,
text
};
}
export function appReady() {
type: APP.READY
export function appInit() {
type: APP.INIT
export function appInitLocalSettings() {
type: APP.INIT_LOCAL_SETTINGS
export function setCurrentServer(server) {
type: types.SET_CURRENT_SERVER,
payload: server
export function login() {
type: 'LOGIN'