/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/kbconst/constants.go
24 строки
755 B
Fred Akalin
Move RunMode out of libkb (#13410)
28 авг 2018, 21:33
Не верифицирован
28 авг 2018, 21:33
93bf060
Код
Авторство
О чём код?
// Copyright 2018 Keybase, Inc. All rights reserved. Use of // this source code is governed by the included BSD license. package kbconst // RunMode is an enum type for the mode the Keybase app runs in. type RunMode string const ( // DevelRunMode means use devel servers. DevelRunMode RunMode = "devel" // StagingRunMode means use staging servers. StagingRunMode RunMode = "staging" // ProductionRunMode means use prod servers (default for // released apps). ProductionRunMode RunMode = "prod" // RunModeError means an error was encountered. RunModeError RunMode = "error" // NoRunMode is the nil value for RunMode. NoRunMode RunMode = "" ) // KBFSLogFileName is the name of the log file for KBFS. const KBFSLogFileName = "keybase.kbfs.log"