github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/prompts/login/constants.go (about)

     1  package loginPrompts
     2  
     3  // English
     4  const (
     5  	githubLoginListenPort = "1442"
     6  
     7  	UseAsDefault      = "Use this as default:"
     8  	SelectAProfile    = "Select a Profile:"
     9  	ProfileName       = "Profile Name:"
    10  	TokenPrompt       = "Token:"
    11  	GitProviderPrompt = "Git Provider:"
    12  
    13  	GetTokenWith       = "Get token with:"
    14  	GetTokenFromWeb    = "Login with %s"
    15  	EnterTokenManually = "Enter token manually"
    16  
    17  	NoSessionProvided          = "no session provided"
    18  	ListenOnPortFailedWith     = "listen on %s failed with: %s"
    19  	ShuttingDownHttpFailedWith = "shutting down http server on %s failed with: %s"
    20  	StartingHttpFailedWith     = "starting http server on %s failed with: %s"
    21  
    22  	SuccessCheckBackAtYourTerminal = "Success, you can close this page!"
    23  
    24  	OpenURLToLogin = "Open to login with %s: %s"
    25  )
    26  
    27  var (
    28  	DefaultProvider = "github"
    29  	Providers       = []string{"github"}
    30  )