Skip to content

Instantly share code, notes, and snippets.

@IamNator
Created August 23, 2023 05:49
Show Gist options
  • Save IamNator/53c8dd8bf9518f2963129d1798f06c08 to your computer and use it in GitHub Desktop.
Save IamNator/53c8dd8bf9518f2963129d1798f06c08 to your computer and use it in GitHub Desktop.
golang file/folder structure
project_root
└───cmd
│ │ main.go
└───internal
│ │
│ └───models
│ │ │ card.go
│ │ │ wallet.go
│ │ │ ...
│ │
│ └───repositories
│ │ │ card_repository.go
│ │ │ wallet_repository.go
│ │ │ ...
│ │
│ └───services
│ │ │ card_service.go
│ │ │ wallet_service.go
│ │ │ ...
│ │
│ └───interfaces
│ │ card_repository_interface.go
│ │ wallet_repository_interface.go
│ │ ...
└───api
│ │ handlers.go
│ │ routes.go
└───config
│ │ config.go
└───utils
│ │ ...
└───scripts
│ │ ...
└───tests
│ │ ...
└───docs
│ │ ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment