ADDED: * math, time functions to tplx/sprigx FIXED: * logging not initializing properly on some BSDs
12 lines
241 B
Go
12 lines
241 B
Go
package sprigx
|
|
|
|
import (
|
|
`errors`
|
|
)
|
|
|
|
var (
|
|
ErrBadMonth error = errors.New("could not determine/parse month")
|
|
ErrBadType error = errors.New("an invalid/unknown type was passed")
|
|
ErrNilVal error = errors.New("a nil value was passed")
|
|
)
|