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