package option
const (
AI_INFER = "ai_infer"
AI = "ai"
CLOUD = "cloud"
HPC = "hpc"
VM = "vm"
)
type Option interface {
GetOptionType() string
}