mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-23 22:27:38 -05:00
12 lines
336 B
Go
12 lines
336 B
Go
|
package quic
|
||
|
|
||
|
import "github.com/cheekybits/genny/generic"
|
||
|
|
||
|
// In the auto-generated streams maps, we need to be able to close the streams.
|
||
|
// Therefore, extend the generic.Type with the stream close method.
|
||
|
// This definition must be in a file that Genny doesn't process.
|
||
|
type item interface {
|
||
|
generic.Type
|
||
|
closeForShutdown(error)
|
||
|
}
|