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") )