data.go 664 B

12345678910111213141516171819202122232425262728
  1. package data
  2. // Data consists of the main set of fake information
  3. var Data = map[string]map[string][]string{
  4. "person": Person,
  5. "contact": Contact,
  6. "address": Address,
  7. "company": Company,
  8. "job": Job,
  9. "lorem": Lorem,
  10. "internet": Internet,
  11. "file": Files,
  12. "color": Colors,
  13. "computer": Computer,
  14. "payment": Payment,
  15. "hipster": Hipster,
  16. "beer": Beer,
  17. "hacker": Hacker,
  18. "currency": Currency,
  19. "log_level": LogLevels,
  20. "timezone": TimeZone,
  21. "vehicle": Vehicle,
  22. }
  23. // IntData consists of the main set of fake information (integer only)
  24. var IntData = map[string]map[string][]int{
  25. "status_code": StatusCodes,
  26. }