feat: config.

This commit is contained in:
Bobo
2025-06-02 14:38:13 +08:00
parent 54e887034f
commit 405717ba70
43 changed files with 4169 additions and 126 deletions

View File

@@ -0,0 +1,13 @@
package apollo
type jsonExtParser struct{}
func (parser jsonExtParser) Parse(configContent any) (map[string]any, error) {
return map[string]any{"content": configContent}, nil
}
type yamlExtParser struct{}
func (parser yamlExtParser) Parse(configContent any) (map[string]any, error) {
return map[string]any{"content": configContent}, nil
}