1
0
mirror of https://github.com/raseels-repos/golang-saas-starter-kit.git synced 2025-08-06 22:32:51 +02:00
Files
golang-saas-starter-kit/internal
Lee Brown daccf4074a issue #29 fixed hot reload of html templates
services had env vars resolving to directories not being watched by
fresh
2020-01-18 13:21:35 -09:00
..
2019-10-26 16:52:38 -08:00
2019-08-14 12:53:40 -08:00
2019-08-22 17:33:47 -08:00

/internal

Private application and library code. This is the code you don't want others importing in their applications or libraries.

You can optionally add a bit of extra structure to your internal packages to separate your shared and non-shared internal code. It's not required, but it's nice to have visual clues showing the intended package use. Your actual application code can go in the /internal/app directory (e.g., /internal/app/myapp) and the code shared by those apps in the /internal/pkg directory (e.g., /internal/pkg/myprivlib).