mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
9 lines
200 B
Go
9 lines
200 B
Go
package main
|
|
|
|
import "github.com/lucas-clemente/quic-go/http3"
|
|
|
|
// The contents of this script don't matter.
|
|
// We just need to make sure that quic-go is imported.
|
|
func main() {
|
|
_ = http3.Server{}
|
|
}
|