7 lines
67 B
Go
7 lines
67 B
Go
package storage
|
|
|
|
type keyValue struct {
|
|
key string
|
|
value any
|
|
}
|