diff --git a/config/source/source.go b/config/source/source.go index 6d0605bc..0cf8b9fb 100644 --- a/config/source/source.go +++ b/config/source/source.go @@ -14,8 +14,8 @@ var ( // Source is the source from which config is loaded type Source interface { Read() (*ChangeSet, error) - Watch() (Watcher, error) Write(*ChangeSet) error + Watch() (Watcher, error) String() string }