mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
10 lines
225 B
Go
10 lines
225 B
Go
//go:build !with_quic
|
|
|
|
package constant
|
|
|
|
import E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
const QUIC_AVAILABLE = false
|
|
|
|
var ErrQUICNotIncluded = E.New(`QUIC is not included in this build, rebuild with -tags with_quic`)
|