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
- Host: GitHub
- URL: https://github.com/lazhari/go-jwt-token
- Owner: Lazhari
- Created: 2020-08-02T19:49:39.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-29T22:09:10.000Z (about 5 years ago)
- Last Synced: 2025-01-21T21:09:38.025Z (12 months ago)
- Language: Go
- Size: 59.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Build JWT Authenticated Restful API with Go
[](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
);
```