errors.go 90 B

123456789
  1. package jsons
  2. import (
  3. "errors"
  4. )
  5. var (
  6. EmptyStringErr = errors.New("empty string")
  7. )