micro/store/memcached_item.go

15 lines
186 B
Go
Raw Normal View History

2015-01-14 02:31:27 +03:00
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
}