This commit is contained in:
csehviktor
2025-08-01 05:52:06 +02:00
commit aae5a0e0fb
16 changed files with 656 additions and 0 deletions

7
store/store.go Normal file
View File

@@ -0,0 +1,7 @@
package store
type store interface {
Get(key string) (string, bool)
Set(key string, value string)
Del(key string)
}