gopkgs.go 502 B

123456789101112131415161718192021222324
  1. package unidecode
  2. import (
  3. "fmt"
  4. "reflect"
  5. )
  6. // gopkgs.go: v1
  7. // NOTE: This file is autogenerated by gopkgs.com.
  8. const (
  9. goPkgsSrcPath = "github.com/rainycape/unidecode"
  10. goPkgsName = "unidecode"
  11. goPkgsErrFmt = "invalid import path %s - please use gopkgs.com/%s.v1 or see http://gopkgs.com/%s"
  12. )
  13. type goPkgsCheck struct{}
  14. func init() {
  15. typ := reflect.TypeOf(goPkgsCheck{})
  16. if typ.PkgPath() == goPkgsSrcPath {
  17. panic(fmt.Errorf(goPkgsErrFmt, typ.PkgPath(), goPkgsName, goPkgsName))
  18. }
  19. }