Add sync-version

This commit is contained in:
2025-07-06 10:55:18 +00:00
parent 254db32eed
commit d60a5a944a
3 changed files with 39 additions and 9 deletions

View File

@ -15,6 +15,8 @@ import (
"gopkg.in/yaml.v2"
)
const Version = "1.0.0"
// Config structures
type Config struct {
Types map[string]DeviceType `yaml:"types"`
@ -228,6 +230,8 @@ func main() {
Short: "SSH Router Backup Tool",
Long: "Connects to routers via SSH and runs commands, saving output to local files.",
Run: func(cmd *cobra.Command, args []string) {
fmt.Printf("IPng Networks Router Backup v%s\n", Version)
// Load configuration
config, err := loadConfig(configPath)
if err != nil {