From 0dfcca55d61d7bce83d1f76542522e4531d76155 Mon Sep 17 00:00:00 2001 From: wubijie Date: Tue, 12 Dec 2023 01:08:51 +0800 Subject: [PATCH] add pluginType --- conf/config.go | 5 ----- main.go | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/conf/config.go b/conf/config.go index b2a8f21..3bfcafe 100644 --- a/conf/config.go +++ b/conf/config.go @@ -16,14 +16,9 @@ type GrafanaConfig struct { Addr string `yaml:"addr"` } -type PilotGoConfig struct { - Addr string `yaml:"http_addr"` -} - type ServerConfig struct { Http *HttpConfig `yaml:"http_server"` Grafana *GrafanaConfig `yaml:"grafana_server"` - PilotGo *PilotGoConfig `yaml:"pilotgo_server"` Logopts *logger.LogOpts `yaml:"log"` } diff --git a/main.go b/main.go index 9ec8e97..e149a20 100644 --- a/main.go +++ b/main.go @@ -22,6 +22,7 @@ var PluginInfo = &client.PluginInfo{ Author: "guozhengxin", Email: "guozhengxin@kylinos.cn", Url: "", + PluginType: "iframe", ReverseDest: "", } -- Gitee