lib/net/textproto: patch Dial

This commit is contained in:
赵英杰
2024-08-13 15:28:30 +08:00
parent 9f1100b967
commit 4a6a97ee75
5 changed files with 369 additions and 2 deletions

View File

@@ -7,7 +7,11 @@ import (
//go:embed _overlay/go/parser/resolver.go
var go_parser_resolver string
//go:embed _overlay/net/textproto/textproto.go
var net_textproto string
var overlayFiles = map[string]string{
"math/exp_amd64.go": "package math;",
"go/parser/resolver.go": go_parser_resolver,
"math/exp_amd64.go": "package math;",
"go/parser/resolver.go": go_parser_resolver,
"net/textproto/textproto.go": net_textproto,
}