Fix timezone for Android and iOS

This commit is contained in:
世界
2024-01-17 05:48:33 +08:00
parent cd0fcd5ddc
commit 830ea46932
8 changed files with 64 additions and 7 deletions

5
constant/quic.go Normal file
View File

@@ -0,0 +1,5 @@
//go:build with_quic
package constant
const WithQUIC = true

5
constant/quic_stub.go Normal file
View File

@@ -0,0 +1,5 @@
//go:build !with_quic
package constant
const WithQUIC = false