-// Set events and http services on window
-import events from "./services/events"
-import httpInstance from "./services/http"
-window.$http = httpInstance;
-window.$events = events;
-
-// Translation setup
-// Creates a global function with name 'trans' to be used in the same way as Laravel's translation system
-import Translations from "./services/translations"
-const translator = new Translations();
-window.trans = translator.get.bind(translator);
-window.trans_choice = translator.getPlural.bind(translator);
-window.trans_plural = translator.parsePlural.bind(translator);
+// Set events, http & translation services on window
+window.$http = new HttpManager();
+window.$events = new EventManager();
+window.$trans = new Translator();