diff options
Diffstat (limited to 'internal/conf/static_minwinsvc.go')
-rw-r--r-- | internal/conf/static_minwinsvc.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/conf/static_minwinsvc.go b/internal/conf/static_minwinsvc.go new file mode 100644 index 00000000..aebfaf6d --- /dev/null +++ b/internal/conf/static_minwinsvc.go @@ -0,0 +1,15 @@ +// +build minwinsvc + +// 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 conf + +import ( + _ "github.com/gogs/minwinsvc" +) + +func init() { + HasMinWinSvc = true +} |