logs refactoring

This commit is contained in:
Gani Georgiev
2023-11-26 13:33:17 +02:00
parent ff5535f4de
commit 821aae4a62
109 changed files with 7320 additions and 3728 deletions
+1 -1
View File
@@ -4,8 +4,8 @@ import "sync"
// Store defines a concurrent safe in memory key-value data store.
type Store[T any] struct {
mux sync.RWMutex
data map[string]T
mux sync.RWMutex
}
// New creates a new Store[T] instance with a shallow copy of the provided data (if any).