12 lines
214 B
Go
12 lines
214 B
Go
|
package inns
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
IncorrectFormatErr = errors.New("incorrect INN format")
|
||
|
IncorrectLenErr = errors.New("incorrect INN length")
|
||
|
SumsNotMatchErr = errors.New("control sums do not match")
|
||
|
)
|