This commit is contained in:
Quentin McGaw
2024-10-21 12:45:51 +02:00
parent 052317f95b
commit 3f636a038c
5 changed files with 155 additions and 172 deletions

View File

@@ -0,0 +1,14 @@
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
}