initial revision

This commit is contained in:
2024-12-12 20:22:11 -05:00
commit 3fbd407254
16 changed files with 1190 additions and 0 deletions

19
cmd/hibernate/root.go Normal file
View File

@@ -0,0 +1,19 @@
package main
import (
"fmt"
"os"
"aws-mgmt/internal/cmd"
)
func main() {
app := cmd.HibernateApp
if err := app.Run(os.Args); err != nil {
fmt.Fprintln(os.Stderr, err.Error())
os.Exit(1)
}
}