An open API service indexing awesome lists of open source software.

https://github.com/devharnold/go-poc

A simple user management web server built in Go as proof of concept of my Go journey
https://github.com/devharnold/go-poc

go

Last synced: 5 months ago
JSON representation

A simple user management web server built in Go as proof of concept of my Go journey

Awesome Lists containing this project

README

          

# go-poc
A simple user management web server built in Go as proof of concept of my Go journey

(go mod init) -> module definition
main.go -> entry point, server setup, routes
handlers.go -> HTTP handler functions (http methods)
models.go -> User struct
storage.go -> in-memory DB (map + mutex), CRUD logic