Controller is an implementation of ConfigStoreController.
| 24 | |
| 25 | // Controller is an implementation of ConfigStoreController. |
| 26 | type Controller struct { |
| 27 | hasSynced func() bool |
| 28 | store *Store |
| 29 | handlers []krt.HandlerRegistration |
| 30 | } |
| 31 | |
| 32 | // NewController return an implementation of ConfigStoreController |
| 33 | func NewController(store *Store) *Controller { |
nothing calls this directly
no outgoing calls
no test coverage detected