Skip to content

Golang mysql user registration includes signup signin(login) level-3

Notifications You must be signed in to change notification settings

reddynn/golang-mysql-user-registration-level-3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome Note

Everyone is welcome for code contributions or code enhancemnets.
please give a star, fork the repo and create PR for your code contributions

db commands

create database userdb;
use userdb;
create table users(username varchar(255), password varchar(255));

run the application with air live reloading

air

run the application with go run

go run main.go

signup request

curl --location 'localhost:8080/signup' \
--header 'Content-Type: application/json' \
--data '{
    "username": "user1",
    "password": "password1"
    
}'

signin request

curl --location 'localhost:8080/signin' \
--header 'Content-Type: application/json' \
--data '{
    "username": "user1",
    "password": "password1"
    
}'

About

Golang mysql user registration includes signup signin(login) level-3

Topics

Resources

Stars

Watchers

Forks

Languages