mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-16 19:15:38 +00:00
18 lines
254 B
Go
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 "../"
|
|
}
|