Gitiles
Code Review
Sign In
review.vexxhost.dev
/
atmosphere
/
dca7297d232b26e7b8e8e7b2baf1fa05c3986a53
/
.
/
cmd
/
atmosphere-ci
/
molecule.go
blob: 0ad87e61cc94ff98fb61e95079e5c04e4a20f5e5 [
file
] [
log
] [
blame
]
package main
import (
"github.com/spf13/cobra"
)
var moleculeCmd = &cobra.Command{
Use: "molecule",
Short: "Molecule sub-commands",
}
func init() {
rootCmd.AddCommand(moleculeCmd)
}