crawlab/core/interfaces/model_environment.go

10 lines
152 B
Go

package interfaces
type Environment interface {
Model
GetKey() (key string)
SetKey(key string)
GetValue() (value string)
SetValue(value string)
}