telebit/internal/service/launchctl_darwin.go

11 lines
194 B
Go
Raw Normal View History

2020-11-05 22:07:01 +00:00
package service
import (
"errors"
)
// Install ensures a systemd service is active
func Install() error {
return errors.New("'install' not supported for system services on this platform")
}