import { AccountService } from "./accountservice";
import { AppReloadService } from "./appreloadservice";
import { ConnectionService } from "./connectionservice";
import { DeviceEventService } from "./deviceeventservice";
import { ImagePreloadService } from "./imagepreloadservice";
import { KeyboardActivationService } from "./keyboardactivationservice";
import { OrientationService } from "./orientationservice";
import { PushService } from "./pushservice";
import { ReloadManager } from "./reloadmanager";
import { SlowInternetService } from "./slowinternetservice";
import { SoundManager } from "./soundmanager";
import { WebsiteService } from "./websiteService";

export let keyboardActivationService = new KeyboardActivationService();
export let slowInternetService = new SlowInternetService();
export let connectionService = new ConnectionService();
export let accountService = new AccountService();
export let imagePreloadService = new ImagePreloadService();
export let reloadManager = new ReloadManager();
export let deviceEvents = new DeviceEventService();
export let soundManager = new SoundManager();
export let orientationService = new OrientationService();
export let pushService = new PushService();
export let websiteService = new WebsiteService();
export const appReloadService = new AppReloadService();
