first use

This commit is contained in:
2024-09-04 17:09:42 +08:00
parent 2dc9c4eaab
commit 3e2ec56abd
4 changed files with 100 additions and 0 deletions

11
main.go Normal file
View File

@ -0,0 +1,11 @@
package main
import (
"git.imbytecat.com/zabbix/zabbix-agent2-plugin-framework/config"
"log"
)
func main() {
config.LoadConfig()
log.Println(config.AppConfig)
}