mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-17 21:15:50 +00:00
9 lines
116 B
Go
9 lines
116 B
Go
|
|
package drain
|
||
|
|
|
||
|
|
import "io"
|
||
|
|
|
||
|
|
type Drainer interface {
|
||
|
|
AcknowledgeReceive(size int)
|
||
|
|
Drain(reader io.Reader) error
|
||
|
|
}
|