mirror of
https://github.com/logos-messaging/logos-messaging-go-bindings.git
synced 2026-01-18 13:43:10 +00:00
8 lines
200 B
Go
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{}
|
|
}
|