mirror of
https://github.com/IBM/fp-go.git
synced 2025-11-25 22:21:49 +02:00
8 lines
100 B
Go
8 lines
100 B
Go
package assert
|
|
|
|
import "github.com/IBM/fp-go/v2/result"
|
|
|
|
type (
|
|
Result[T any] = result.Result[T]
|
|
)
|