telebit/internal/service/systemd_linux.go

11 lines
194 B
Go

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")
}