commit | 7f2ef826617f676107183c07a4d5f306cb6d6665 | [log] [tgz] |
---|---|---|
author | Mohammed Naser <mnaser@vexxhost.com> | Wed Sep 07 15:51:26 2022 -0400 |
committer | Mohammed Naser <mnaser@vexxhost.com> | Sat Sep 10 01:19:09 2022 -0400 |
tree | 13cd44e4e1f73452518a73cb254d41923376f696 | |
parent | 47132c47b1550525f80110c835e87a4231f12340 [diff] [blame] |
refactor: move molecule cleanup to atmosphere-ci cmd
diff --git a/cmd/atmosphere-ci/molecule.go b/cmd/atmosphere-ci/molecule.go new file mode 100644 index 0000000..0ad87e6 --- /dev/null +++ b/cmd/atmosphere-ci/molecule.go
@@ -0,0 +1,14 @@ +package main + +import ( + "github.com/spf13/cobra" +) + +var moleculeCmd = &cobra.Command{ + Use: "molecule", + Short: "Molecule sub-commands", +} + +func init() { + rootCmd.AddCommand(moleculeCmd) +}