Example #1
0
        public PluginService(IPluginManager pluginManager)
            : base(pluginManager)
        {
            Logger.LogNotice("Web server initializing...");

            TemplateTools.InitializePath(pluginManager.GetPluginPath(this));

            _webServer = new WebServerWrapper(this);

            _webServer.Started += InternalServiceStarted;
            _webServer.Stopped += InternalServiceStopped;
        }