15 lines
186 B
Go
15 lines
186 B
Go
|
package store
|
||
|
|
||
|
type MemcacheItem struct {
|
||
|
key string
|
||
|
value []byte
|
||
|
}
|
||
|
|
||
|
func (m *MemcacheItem) Key() string {
|
||
|
return m.key
|
||
|
}
|
||
|
|
||
|
func (m *MemcacheItem) Value() []byte {
|
||
|
return m.value
|
||
|
}
|