github.com/jfrog/jfrog-cli-core/v2@v2.52.0/common/cliutils/cli_consts.go (about)

     1  package cliutils
     2  
     3  import ()
     4  
     5  type CommandDomain string
     6  
     7  const (
     8  	Rt       CommandDomain = "rt"
     9  	Ds       CommandDomain = "ds"
    10  	Xr       CommandDomain = "xr"
    11  	Platform CommandDomain = "platform"
    12  )
    13  
    14  const (
    15  	// Common
    16  	Threads = 3
    17  
    18  	// Environment variables
    19  	JfrogCliAvoidDeprecationWarnings = "JFROG_CLI_AVOID_DEPRECATION_WARNINGS"
    20  )