1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-11-25 22:21:49 +02:00
Files
fp-go/v2/assert/types.go
Dr. Carsten Leue fd0550e71b fix: better test coverage
Signed-off-by: Dr. Carsten Leue <carsten.leue@de.ibm.com>
2025-11-12 10:35:53 +01:00

8 lines
100 B
Go

package assert
import "github.com/IBM/fp-go/v2/result"
type (
Result[T any] = result.Result[T]
)