mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
26 lines
424 B
Go
26 lines
424 B
Go
package constants
|
|
|
|
const (
|
|
Windows = "windows"
|
|
Linux = "linux"
|
|
Darwin = "darwin"
|
|
)
|
|
|
|
const (
|
|
Python = "python"
|
|
Nodejs = "node"
|
|
Java = "java"
|
|
)
|
|
|
|
const (
|
|
InstallStatusNotInstalled = "not-installed"
|
|
InstallStatusInstalling = "installing"
|
|
InstallStatusInstallingOther = "installing-other"
|
|
InstallStatusInstalled = "installed"
|
|
)
|
|
|
|
const (
|
|
LangTypeLang = "lang"
|
|
LangTypeWebDriver = "webdriver"
|
|
)
|