mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
10 lines
152 B
Go
10 lines
152 B
Go
package interfaces
|
|
|
|
type Environment interface {
|
|
Model
|
|
GetKey() (key string)
|
|
SetKey(key string)
|
|
GetValue() (value string)
|
|
SetValue(value string)
|
|
}
|