tools: Tailscale status

This commit is contained in:
世界
2026-04-09 19:34:27 +08:00
parent 47f09c96a9
commit d70bfb9bb6
10 changed files with 988 additions and 100 deletions
+5 -2
View File
@@ -1,9 +1,12 @@
package libbox
import "time"
import (
"time"
"unsafe"
)
func TriggerGoPanic() {
time.AfterFunc(200*time.Millisecond, func() {
panic("debug go crash")
*(*int)(unsafe.Pointer(uintptr(0))) = 0
})
}