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

https://github.com/lazhari/go-jwt-token

JWT implementation using Go
https://github.com/lazhari/go-jwt-token

Last synced: 10 months ago
JSON representation

JWT implementation using Go

Awesome Lists containing this project

README

          

# Build JWT Authenticated Restful API with Go

[![Go Report Card](https://goreportcard.com/badge/github.com/Lazhari/go-jwt-token)](https://goreportcard.com/report/github.com/Lazhari/go-jwt-token)

## User table

```sql
CREATE TABLE users (
id SERIAL PRIMARY KEY,
email TEXT NOT NULL UNIQUE,
password TEXT Not NULL
);
```