Add common.Top func

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

View file

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