7 lines
137 B
Go
7 lines
137 B
Go
package controllerapi
|
|
|
|
// Controller expose Run method
|
|
type Controller interface {
|
|
Run(threadiness int, stopCh <-chan struct{}) error
|
|
}
|