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