diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-18 16:49:40 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2017-01-18 16:50:06 -0500 |
commit | da323d62044ca98455763300596645dc082bd007 (patch) | |
tree | fcf40fde3b8c9303f9270a77e4b402cca23837a0 /sd_daemon/notify_test.go | |
parent | 76e70fbe6ec8978c1cf36a966bca31c7417d5c67 (diff) |
Change the notify signature (again). BREAKING CHANGE.v0.4.0
I think this should reduce the cognitive load of using the function.
Diffstat (limited to 'sd_daemon/notify_test.go')
-rw-r--r-- | sd_daemon/notify_test.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sd_daemon/notify_test.go b/sd_daemon/notify_test.go new file mode 100644 index 0000000..b9910ae --- /dev/null +++ b/sd_daemon/notify_test.go @@ -0,0 +1,23 @@ +// Copyright 2016-2017 Luke Shumaker +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package sd_daemon_test + +import ( + "git.lukeshu.com/go/libsystemd/sd_daemon" +) + +func ExampleNotification() { + sd_daemon.Notification{State: "READY=1\nSTATUS=Daemon is running"}.Send(false) +} |