From 930f36b586f0f815001a3454d11bccdcdb971209 Mon Sep 17 00:00:00 2001 From: chenxinquan Date: Tue, 8 Nov 2022 20:03:01 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8A=E4=B8=80=E4=B8=AA=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E8=AF=A6=E7=BB=86=E5=86=99=E9=94=99=E4=BA=86=EF=BC=8C=E5=BA=94?= =?UTF-8?q?=E8=AF=A5=E6=98=AF=E7=BC=96=E5=86=99PushExplorerWeb()?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/genmai/Doctor.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/genmai/Doctor.go b/src/genmai/Doctor.go index 3f1fd92..ecc3de8 100644 --- a/src/genmai/Doctor.go +++ b/src/genmai/Doctor.go @@ -151,6 +151,7 @@ func (dtr *doctor)PushExplorerDBus(configfile string) error { } func (dtr *doctor)PushExplorerKernel(configfile string) error { + // TODO: need to test ek := ExplorerKernel{} ek.Setup(&ConfigParserYAML{}, &ExplorerConfigKernel{}) ek.LoadConfig(configfile) @@ -169,6 +170,7 @@ func (dtr *doctor)PushExplorerKernel(configfile string) error { } func (dtr *doctor)PushExplorerSystem(configfile string) error { + // TODO: need to test ek := ExplorerSystem{} ek.Setup(&ConfigParserYAML{}, &ExplorerConfigSystem{}) ek.LoadConfig(configfile) @@ -187,6 +189,7 @@ func (dtr *doctor)PushExplorerSystem(configfile string) error { } func (dtr *doctor)PushExplorerWeb(configfile string) error { + // TODO: need to test ek := ExplorerWeb{} ek.Setup(&ConfigParserYAML{}, &ExplorerConfigWeb{}) ek.LoadConfig(configfile)