Files
gluetun/internal/shadowsocks/noop.go
Quentin McGaw 3f636a038c wip
2024-10-21 11:02:21 +00:00

15 lines
229 B
Go

package shadowsocks
import "context"
type noopService struct{}
func (n *noopService) Start(_ context.Context) (
runError <-chan error, err error) {
return nil, nil
}
func (n *noopService) Stop() (err error) {
return nil
}