mirror of
https://github.com/kubernetes-sigs/external-dns.git
synced 2025-08-06 09:36:58 +02:00
12 lines
202 B
Go
12 lines
202 B
Go
package controller
|
|
|
|
import (
|
|
log "github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
// Run runs the main controller loop
|
|
func Run(stopChan <-chan struct{}) {
|
|
<-stopChan
|
|
log.Infoln("terminating main controller loop")
|
|
}
|