Files
llgo/runtime/overlay.go
2025-11-13 15:48:50 +08:00

18 lines
354 B
Go

package runtime
import (
_ "embed"
)
//go:embed _overlay/runtime/runtime.go
var fakeRuntime string
//go:embed _overlay/net/textproto/textproto.go
var net_textproto string
var OverlayFiles = map[string]string{
"math/exp_amd64.go": "package math;",
"net/textproto/textproto.go": net_textproto,
"runtime/runtime.go": fakeRuntime,
}