mirror of
https://github.com/skidoodle/pastebin
synced 2025-10-14 09:44:48 +02:00
9 lines
181 B
Go
9 lines
181 B
Go
package store
|
|
|
|
// Store is the interface for a key-value store.
|
|
type Store interface {
|
|
Get(key string) (string, bool, error)
|
|
Set(key, value string) error
|
|
Del(key string) error
|
|
}
|