downloader/utils.go

7 lines
65 B
Go
Raw Normal View History

2022-08-15 15:55:27 +02:00
package main
type Pair[A, B any] struct {
First A
Second B
}