cast/types.go
2019-03-19 14:06:03 +02:00

12 lines
128 B
Go

package cast
type (
float64er interface {
Float64() (float64, error)
}
int64er interface {
Int64() (int64, error)
}
)