From 1e0cdc54f86cb29eca14af13aaa3ccfb07d46a20 Mon Sep 17 00:00:00 2001 From: WingLim <643089849@qq.com> Date: Sat, 30 Jul 2022 04:06:54 +0800 Subject: core: Windows service integration (#4790) Co-authored-by: Matthew Holt --- notify/notify_other.go | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) (limited to 'notify/notify_other.go') diff --git a/notify/notify_other.go b/notify/notify_other.go index 6ffec89..7fc618b 100644 --- a/notify/notify_other.go +++ b/notify/notify_other.go @@ -12,19 +12,10 @@ // See the License for the specific language governing permissions and // limitations under the License. -//go:build !linux -// +build !linux +//go:build !linux && !windows package notify -func notifyReadiness() error { - return nil -} - -func notifyReloading() error { - return nil -} - -func notifyStopping() error { - return nil -} +func notifyReadiness() error { return nil } +func notifyReloading() error { return nil } +func notifyStopping() error { return nil } -- cgit v1.2.3