mirror of
https://github.com/SagerNet/sing-box.git
synced 2026-04-14 04:38:28 +10:00
10 lines
134 B
Go
10 lines
134 B
Go
package libbox
|
|
|
|
import "time"
|
|
|
|
func TriggerGoPanic() {
|
|
time.AfterFunc(200*time.Millisecond, func() {
|
|
panic("debug go crash")
|
|
})
|
|
}
|