GraphQL API and utilities for the rpdata project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.1 KiB

  1. // Code generated by sqlc. DO NOT EDIT.
  2. package psqlcore
  3. import (
  4. "database/sql"
  5. "encoding/json"
  6. "time"
  7. )
  8. type CoreCounter struct {
  9. ID string `json:"id"`
  10. Value sql.NullInt32 `json:"value"`
  11. }
  12. type DataChange struct {
  13. ID string `json:"id"`
  14. Model string `json:"model"`
  15. Op string `json:"op"`
  16. Author string `json:"author"`
  17. Listed bool `json:"listed"`
  18. Date time.Time `json:"date"`
  19. Keys []string `json:"keys"`
  20. Objects json.RawMessage `json:"objects"`
  21. }
  22. type DataChannel struct {
  23. Name string `json:"name"`
  24. Logged bool `json:"logged"`
  25. Hub bool `json:"hub"`
  26. EventName string `json:"event_name"`
  27. LocationName string `json:"location_name"`
  28. }
  29. type DataCharacter struct {
  30. ID string `json:"id"`
  31. Nicks []string `json:"nicks"`
  32. Name string `json:"name"`
  33. ShortName string `json:"short_name"`
  34. Author string `json:"author"`
  35. Description string `json:"description"`
  36. TsVector interface{} `json:"ts_vector"`
  37. }