Skip to content

ieltsduck/golang-service-sample

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Golang Service Sample

A Web application sample implemented with Go/Fiber.

Project Structure

## project structure
.
├── README.md
├── go.mod            // defines your module and its dependencies
├── go.sum            // ensures the integrity and reproducibility of your dependencies
├── handlers
│   ├── about.go      // "/about" about page
│   ├── home.go       // "/" home page
│   └── home_test.go  // home unit test - go test ./...
├── main.go           // entry point file
└── routes
└── routes.go         // application routes

Unit Test

testify: https://github.com/stretchr/testify

About

A web application sample implemented with Go/Fiber.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages