mirror of
https://github.com/oneclickvirt/backtrace.git
synced 2026-08-13 12:19:16 +08:00
11 lines
210 B
Go
11 lines
210 B
Go
package backtrace
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func BackTrace(enableIpv6 bool) string {
|
|
report := RunRouteReport(context.Background(), RouteReportConfig{EnableIPv6: enableIpv6})
|
|
return RenderRouteReport(report)
|
|
}
|