Initial commit

This commit is contained in:
Jan Lošťák
2024-05-27 21:27:07 +02:00
commit a1ab163804
22 changed files with 2920 additions and 0 deletions

13
main.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"flag"
"lostak.dev/pve-exporter/application"
)
func main() {
var configPath string
flag.StringVar(&configPath, "config", "config.yaml", "Path to config yaml file.")
application.NewApplication(configPath).Start()
}