18 lines
354 B
Go
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,
|
|
}
|