2
0
mirror of https://github.com/status-im/status-go.git synced 2025-01-13 08:05:40 +00:00

8 lines
200 B
Go
Raw Normal View History

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{}
}