Fix fakeip not started

This commit is contained in:
世界 2025-01-31 10:53:53 +08:00
parent 6c0e2bf526
commit 6fd95e157a
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4

View File

@ -36,6 +36,14 @@ func NewTransport(ctx context.Context, logger log.ContextLogger, tag string, opt
}, nil
}
func (t *Transport) Start() error {
return t.store.Start()
}
func (t *Transport) Close() error {
return t.store.Close()
}
func (t *Transport) Reset() {
}