Files
gluetun/internal/shadowsocks/noop.go

15 lines
229 B
Go
Raw Normal View History

2024-10-21 12:45:51 +02:00
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
}