mirror of
				https://github.com/edgelesssys/constellation.git
				synced 2025-11-04 04:39:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			339 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
)
 | 
						|
 | 
						|
func newConfigCmd() *cobra.Command {
 | 
						|
	cmd := &cobra.Command{
 | 
						|
		Use:   "config",
 | 
						|
		Short: "Work with the Constellation configuration file",
 | 
						|
		Long:  "Generate a configuration file for Constellation.",
 | 
						|
		Args:  cobra.ExactArgs(0),
 | 
						|
	}
 | 
						|
 | 
						|
	cmd.AddCommand(newConfigGenerateCmd())
 | 
						|
 | 
						|
	return cmd
 | 
						|
}
 |