Files
pastebin/store/store.go
csehviktor aae5a0e0fb init
2025-08-01 05:52:06 +02:00

8 lines
120 B
Go

package store
type store interface {
Get(key string) (string, bool)
Set(key string, value string)
Del(key string)
}