Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 669 Bytes

README.md

File metadata and controls

47 lines (38 loc) · 669 Bytes

GOLANG SCRATCH

tech and tools

  • chi router
  • cors
  • handlerWithJson
  • commitlint & linter
  • database
    • goose
    • sqlc
  • docker
  • auth
    • apikey
  • relationship

database

erDiagram
    users {
        id uuid
        name text
        apikey varchar(64)
        created_at timestamp
        updated_at timestamp
    }

    feeds {
        id uuid
        name text
        url text
        created_at timestamp
        updated_at timestamp
        user_id uuid
    }

    users ||--o{ feeds : contains