11 lines
219 B
Go
11 lines
219 B
Go
// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
//go:build plus
|
|
|
|
package http3
|
|
|
|
type Notifier interface {
|
|
ReadBytes(size int)
|
|
WriteBytes(size int)
|
|
Close()
|
|
}
|