blob: 0ad87e61cc94ff98fb61e95079e5c04e4a20f5e5 [file] [log] [blame]
Mohammed Naser7f2ef822022-09-07 15:51:26 -04001package main
2
3import (
4 "github.com/spf13/cobra"
5)
6
7var moleculeCmd = &cobra.Command{
8 Use: "molecule",
9 Short: "Molecule sub-commands",
10}
11
12func init() {
13 rootCmd.AddCommand(moleculeCmd)
14}