diff --git a/pair.go b/pair.go new file mode 100644 index 0000000..6988679 --- /dev/null +++ b/pair.go @@ -0,0 +1,6 @@ +package model + +type Pair[A, B any] struct { + First A + Second B +}