business.go 520 B

1234567891011121314151617181920212223242526272829
  1. package service
  2. import (
  3. "time"
  4. "go-common/app/interface/main/captcha/conf"
  5. xtime "go-common/library/time"
  6. )
  7. var (
  8. _defaultBusiness = &conf.Business{
  9. BusinessID: "default",
  10. LenStart: 4,
  11. LenEnd: 4,
  12. Width: 100,
  13. Length: 50,
  14. TTL: xtime.Duration(300 * time.Second),
  15. }
  16. )
  17. // LookUp look up business services.
  18. func (s *Service) LookUp(bid string) (business *conf.Business) {
  19. for _, b := range s.conf.Business {
  20. if b.BusinessID == bid {
  21. return b
  22. }
  23. }
  24. return _defaultBusiness
  25. }