重构输出流转发, TransStream不再持有Sink

This commit is contained in:
yangjiechina
2024-10-28 19:15:53 +08:00
parent 9090e28077
commit ec707c8dc1
27 changed files with 894 additions and 747 deletions

View File

@@ -16,7 +16,7 @@ type Server interface {
func NewServer(password string) Server {
return &server{
handler: newHandler(password),
handler: NewHandler(password),
}
}