diff options
Diffstat (limited to 'modules/setting/miniwinsvc.go')
-rw-r--r-- | modules/setting/miniwinsvc.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/setting/miniwinsvc.go b/modules/setting/miniwinsvc.go new file mode 100644 index 0000000000..02e8eb91fc --- /dev/null +++ b/modules/setting/miniwinsvc.go @@ -0,0 +1,15 @@ +// +build miniwinsvc + +// Copyright 2015 The Gogs Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package setting + +import ( + _ "github.com/kardianos/minwinsvc" +) + +func init() { + SupportMiniWinService = true +} |