2025-02-06 11:02:09 +08:00
|
|
|
package runtime
|
2024-07-27 12:32:33 +08:00
|
|
|
|
2024-07-31 12:29:09 +08:00
|
|
|
import (
|
|
|
|
|
_ "embed"
|
|
|
|
|
)
|
|
|
|
|
|
2025-04-08 16:50:47 +08:00
|
|
|
//go:embed _overlay/runtime/runtime.go
|
|
|
|
|
var fakeRuntime string
|
|
|
|
|
|
2024-08-13 15:28:30 +08:00
|
|
|
//go:embed _overlay/net/textproto/textproto.go
|
|
|
|
|
var net_textproto string
|
|
|
|
|
|
2025-02-06 11:02:09 +08:00
|
|
|
var OverlayFiles = map[string]string{
|
2024-08-13 15:28:30 +08:00
|
|
|
"math/exp_amd64.go": "package math;",
|
|
|
|
|
"net/textproto/textproto.go": net_textproto,
|
2025-04-08 16:50:47 +08:00
|
|
|
"runtime/runtime.go": fakeRuntime,
|
2024-07-27 12:32:33 +08:00
|
|
|
}
|