12 lines
178 B
Go
12 lines
178 B
Go
package metadata
|
|
|
|
type Metadatable interface {
|
|
GetMetadata() Metadata
|
|
}
|
|
|
|
type Metadata interface {
|
|
IsExists(key string) bool
|
|
Set(key string, value any)
|
|
Get(key string) any
|
|
}
|