From 81e20160f562de120e8a79f139e18fda0c669e56 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Mon, 23 Dec 2019 08:49:53 +0000 Subject: [PATCH] reorder --- config/source/source.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }