Initial commit

This commit is contained in:
sonix 2026-03-22 09:43:45 +00:00 committed by sonix
commit 309b240cdc
12 changed files with 738 additions and 0 deletions

15
main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"vix.ro/sonix/azure_migrate/cmd"
)
func main() {
if err := cmd.Execute(); err != nil {
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
os.Exit(1)
}
}