Add common.Top func

This commit is contained in:
世界 2023-11-08 11:29:54 +08:00
parent 0d98e82146
commit 7c05b33b2d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -31,3 +31,13 @@ func MustCast[T any](obj any) T {
} }
return value return value
} }
func Top(obj any) any {
if u, ok := obj.(WithUpstream); ok {
return Top(u.Upstream())
}
if u, ok := obj.(stdWithUpstreamNetConn); ok {
return Top(u.NetConn())
}
return obj
}