Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 546 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 546 Bytes

Simple authentication and books management with GoFiber

Simple authentication system with gofiber.

Endpoints

  • GET /api - Welcome message
  • POST /api/auth/login - Login user
  • POST /api/auth/register - Register user
  • GET /api/user/:id - Get user
  • PATCH /api/user/:id - Update user
  • DELETE /api/user/:id - Delete user
  • GET /api/book - Get all books
  • GET /api/book/:id - Get book
  • POST /api/book - Create book
  • DELETE /api/book/:id - Delete book