Yeuoly 10 달 전
부모
커밋
efa55c63a9
1개의 변경된 파일0개의 추가작업 그리고 14개의 파일을 삭제
  1. 0 14
      internal/core/plugin_manager/watcher.go

+ 0 - 14
internal/core/plugin_manager/watcher.go

@@ -206,17 +206,3 @@ func (p *PluginManager) loadPlugin(plugin_path string) (*pluginRuntimeWithDecode
 		Decoder: decoder,
 	}, nil
 }
-
-func parsePluginConfig(configuration_path string) (*plugin_entities.PluginDeclaration, error) {
-	text, err := os.ReadFile(configuration_path)
-	if err != nil {
-		return nil, err
-	}
-
-	result, err := plugin_entities.UnmarshalPluginDeclarationFromYaml(text)
-	if err != nil {
-		return nil, err
-	}
-
-	return result, nil
-}