7 lines
66 B
Go
7 lines
66 B
Go
|
package model
|
||
|
|
||
|
type Pair[A, B any] struct {
|
||
|
First A
|
||
|
Second B
|
||
|
}
|