8 lines
93 B
Go
8 lines
93 B
Go
package version
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidVersion = errors.New("invalid version")
|
|
)
|