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
- Host: GitHub
- URL: https://github.com/devharnold/go-poc
- Owner: devharnold
- Created: 2025-08-26T08:58:33.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-31T17:56:51.000Z (9 months ago)
- Last Synced: 2025-08-31T19:31:06.459Z (9 months ago)
- Topics: go
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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