summaryrefslogtreecommitdiff
path: root/notify/notify_other.go
diff options
context:
space:
mode:
authorWingLim <643089849@qq.com>2022-07-30 04:06:54 +0800
committerGitHub <noreply@github.com>2022-07-29 14:06:54 -0600
commit1e0cdc54f86cb29eca14af13aaa3ccfb07d46a20 (patch)
tree53e3baf13dea0f276db192348bf1014f2746c220 /notify/notify_other.go
parent2f43aa062925e0e8ff114e6035f3bc1b2f7b8e4a (diff)
core: Windows service integration (#4790)
Co-authored-by: Matthew Holt <mholt@users.noreply.github.com>
Diffstat (limited to 'notify/notify_other.go')
-rw-r--r--notify/notify_other.go17
1 files changed, 4 insertions, 13 deletions
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 }