All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			See #483
		
			
				
	
	
		
			14 lines
		
	
	
		
			313 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			313 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package server
 | |
| 
 | |
| import (
 | |
| 	"coopcloud.tech/abra/pkg/i18n"
 | |
| 	"github.com/spf13/cobra"
 | |
| )
 | |
| 
 | |
| // ServerCommand defines the `abra server` command and its subcommands
 | |
| var ServerCommand = &cobra.Command{
 | |
| 	Use:     i18n.G("server [cmd] [args] [flags]"),
 | |
| 	Aliases: []string{i18n.G("s")},
 | |
| 	Short:   i18n.G("Manage servers"),
 | |
| }
 |