mirror of
https://github.com/bitmagnet-io/bitmagnet.git
synced 2026-05-10 06:10:03 -04:00
7 lines
86 B
Go
7 lines
86 B
Go
package maps
|
|
|
|
type MapEntry[K comparable, V interface{}] struct {
|
|
Key K
|
|
Value V
|
|
}
|