Fix ci build

This commit is contained in:
世界
2023-08-11 15:44:04 +08:00
parent 422bee9078
commit 4925553aa3
3 changed files with 36 additions and 4 deletions

View File

@@ -5,8 +5,10 @@ package badtls
import (
"crypto/tls"
"os"
aTLS "github.com/sagernet/sing/common/tls"
)
func Create(conn *tls.Conn) (TLSConn, error) {
func Create(conn *tls.Conn) (aTLS.Conn, error) {
return nil, os.ErrInvalid
}