7 lines
150 B
Go
7 lines
150 B
Go
|
package genericapi
|
||
|
|
||
|
type DynamicallyConfigurable interface {
|
||
|
MakeConfigurationObject() interface{}
|
||
|
ValidateConfiguration(config interface{}) bool
|
||
|
}
|