| 1234567891011121314151617 |
- //go:build !windows
- // +build !windows
- package servicehost
- import (
- log "github.com/sirupsen/logrus"
- )
- func Start(_ string, _ string) {
- log.Debugf("servicehost nonwin")
- }
- func GetConfigFilePath() string {
- log.Debugf("servicehost nonwin")
- return "../"
- }
|