11 lines
214 B
Go
11 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")
|
|
)
|