status-go/waku/types/wrapped.go
2025-01-17 10:14:54 +01:00

8 lines
200 B
Go

package types
// Wrapped tells that a given object has an underlying representation
// and this representation can be accessed using `Unwrap` method.
type Wrapped interface {
Unwrap() interface{}
}