Skip to content

Instantly share code, notes, and snippets.

View skaarlcooper's full-sized avatar
🐣

Vinh Cao skaarlcooper

🐣
View GitHub Profile
@skaarlcooper
skaarlcooper / multiwriter.go
Created October 10, 2024 08:44 — forked from brydavis/multiwriter.go
io.TeeReader versus io.MultiWriter
package main
import (
"bytes"
"crypto/md5"
"encoding/hex"
"fmt"
"io"
"io/ioutil"
"os"
@skaarlcooper
skaarlcooper / folder_structure.md
Created October 14, 2024 13:14 — forked from ayoubzulfiqar/folder_structure.md
The Folder Structure for Every Golang Project

Go - The Ultimate Folder Structure

Organizing your Go (Golang) project's folder structure can help improve code readability, maintainability, and scalability. While there is no one-size-fits-all structure, here's a common folder structure for a Go project:

project-root/
    ├── cmd/
    │   ├── your-app-name/
    │   │   ├── main.go         # Application entry point
    │   │   └── ...             # Other application-specific files