Abdulmujeeb Raji
e08adc96ae
Introducing a unified signup and login API. You can post to the /user route with credentials (so far just name and password), and if the user doesn't exist, we create the user and return a token. If the user does exist, if the password inputted matches the database password, we return a token for that user, else we return an error. i've never wanted to kms more during a programming session
11 lines
212 B
Modula-2
11 lines
212 B
Modula-2
module github.com/devraza/ambition/backend
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mattn/go-sqlite3 v1.14.17
|
|
golang.org/x/crypto v0.11.0
|
|
)
|