downloader/utils.go
2022-08-15 15:55:27 +02:00

7 lines
65 B
Go

package main
type Pair[A, B any] struct {
First A
Second B
}