sing-box/cmd/sing-box/cmd_tools_fetch_http3_stub.go
2024-10-13 13:07:02 +08:00

19 lines
250 B
Go

//go:build !with_quic
package main
import (
"net/url"
"os"
box "github.com/sagernet/sing-box"
)
func initializeHTTP3Client(instance *box.Box) error {
return os.ErrInvalid
}
func fetchHTTP3(parsedURL *url.URL) error {
return os.ErrInvalid
}