| 22 | type ConfigUpdateHandler func(FullConfigType) |
| 23 | |
| 24 | type Watcher struct { |
| 25 | initialized bool |
| 26 | watcher *fsnotify.Watcher |
| 27 | mutex sync.Mutex |
| 28 | fullConfig FullConfigType |
| 29 | handlers []ConfigUpdateHandler |
| 30 | } |
| 31 | |
| 32 | type WatcherUpdate struct { |
| 33 | FullConfig FullConfigType `json:"fullconfig"` |
nothing calls this directly
no outgoing calls
no test coverage detected