Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 835 Bytes

readme.md

File metadata and controls

28 lines (20 loc) · 835 Bytes

# GoFiber-101

This project aim to guide newcomer to understand gofiber web framework in a short period .

Quick run

git clone https://github.com/zercle/gofiber-101.git
go run main.go

Resources

UML diagrams

This project try simulate full stack web development

sequenceDiagram
Webpage ->> Webservice: Request
Webservice ->> Database: Query
Database ->> Webservice: Result
Webservice ->> Webpage: Process & Response
Loading