An open API service indexing awesome lists of open source software.

https://github.com/anucha-tk/fc_go_scratch


https://github.com/anucha-tk/fc_go_scratch

Last synced: 12 months ago
JSON representation

Awesome Lists containing this project

README

          

# GOLANG SCRATCH

- [GOLANG SCRATCH](#golang-scratch)
- [tech and tools](#tech-and-tools)
- [database](#database)

## tech and tools

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

## database

```mermaid.js
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

```