models.go 155 B

12345678910111213
  1. // Code generated by sqlc. DO NOT EDIT.
  2. package authors
  3. import (
  4. "database/sql"
  5. )
  6. type Author struct {
  7. ID int64
  8. Name string
  9. Bio sql.NullString
  10. }