services/internal/internal.go
Dan Anglin 25325e2856
refactor: update project structure
Changes:

- Most of the go code is now located in internal packages.
- Code refactored and simplified in some cases.
- Removed the 'download' mage target and integrated the download code
  into the internal 'prepare' package.
- Moved all mage target code to magefile.go.
- Added missing descriptions to the mage targets.
- Updated go.mod.

Fixed:

- Created a custom function to validate the checksum of the
  downloaded Woodpecker tar file.
- Specified the environment when running 'clean'.
2023-11-24 09:56:35 +00:00

7 lines
144 B
Go

package internal
const (
RootBuildDir string = "./build"
RootTemplatesDir string = "./templates"
RootAssetsDir string = "./assets"
)