indieauth-server/internal/info/info.go
Dan Anglin 4fdad2d805
All checks were successful
CI / Tests (pull_request) Successful in 9s
CI / Style (pull_request) Successful in 9s
feat: project setup
- Set the project's placeholder name to indieauth-server.
- Update the magefiles and CI workflow.
- Add the version command to print the app's build information.
- Add the serve command to run the HTTP server.
2024-10-13 15:36:54 +01:00

12 lines
270 B
Go

package info
const (
ApplicationName string = "indieauth-server"
)
var (
BinaryVersion string //nolint:gochecknoglobals
BuildTime string //nolint:gochecknoglobals
GoVersion string //nolint:gochecknoglobals
GitCommit string //nolint:gochecknoglobals
)