mirror of
https://github.com/therootcompany/telebit.git
synced 2025-08-05 02:46:39 +00:00
11 lines
201 B
Go
11 lines
201 B
Go
package service
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
// Install ensures a systemd service is active
|
|
func Install(name, desc string) error {
|
|
return errors.New("not supported for system services on this platform")
|
|
}
|