void Awake()
        {
            WebAPIPlugin.Instance = this;

            WebAPI.Config.LoadConfig();
            Dispatcher.Initialize();

            if (WebAPI.Config.Instance.Enabled)
            {
                this.ApplyPatches();

                var ownAssembly = typeof(WebAPIPlugin).Assembly;
                this.RegisterControllers(ownAssembly);
                JsonTranslator.LoadJsonTranslatorStrategies(ownAssembly);
            }
            else
            {
                Logging.Log("WebAPI is disabled.");
            }
        }