Files
OliveTin/service/internal/servicehost/servicehost_nonwin.go
James Read 74f0930dcc
Some checks failed
Build Snapshot / build-snapshot (push) Has been cancelled
DevSkim / DevSkim (push) Has been cancelled
feat: #582 ServiceMain for Windows (#593)
2025-05-30 08:30:58 +00:00

18 lines
254 B
Go

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