constants.go 182 B

12345678
  1. package dal
  2. import "errors"
  3. var (
  4. DBRECORD_NOT_EXISTS_ERROR = errors.New("can not find record from db")
  5. DBRECORD_ALREADY_EXISTS_ERROR = errors.New("record already exists")
  6. )