mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2024-11-22 23:33:09 +01:00
10 lines
108 B
Go
10 lines
108 B
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
func Daemonize() error {
|
|
return errors.New("Not implemented on OSX")
|
|
}
|