Files
crawlab/core/constants/dependency.go
2024-11-15 18:40:06 +08:00

21 lines
488 B
Go

package constants
const (
DependencyTypePython = "python"
DependencyTypeNode = "node"
)
const (
DependencyStatusInstalling = "installing"
DependencyStatusInstalled = "installed"
DependencyStatusUninstalling = "uninstalling"
DependencyStatusUninstalled = "uninstalled"
DependencyStatusError = "error"
DependencyStatusAbnormal = "abnormal"
)
const (
DependencyFileTypeRequirementsTxt = "requirements.txt"
DependencyFileTypePackageJson = "package.json"
)