mirror of
https://github.com/IBM/fp-go.git
synced 2025-12-09 23:11:40 +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]
|
|
)
|