blob: 197d30021faaf988747ece5b354127e7103ca9f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2015 Daniel Theophanes.
// Use of this source code is governed by a zlib-style
// license that can be found in the LICENSE file.package service
//+build !windows
package minwinsvc
func setOnExit(f func()) {
// Nothing.
}
|