package
0.0.0-20210405174335-291f11c98ed6
Repository: https://github.com/milsoncodes/gin-template.git
Documentation: pkg.go.dev

# Functions

CreateUser - create a new user and add to the database POST /users.
DeleteUser - delete the user from the database DELETE /users/:id.
FindUser - find a single user from the database based on ID GET /users/:id.
FindUsers - search the database for all user entries GET /users.
UpdateUser - update a current user in the database PATH /users/:id.

# Structs

CreateUserInput - the types accpeted for user creation.
UpdateUserInput - the types accpeted for user creation.