mirror of
https://github.com/KusakabeShi/EtherGuard-VPN.git
synced 2025-02-21 09:40:47 +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")
|
||
|
}
|