website/internal/build/magefiles/main.go
Dan Anglin ac7d73f013
checkpoint: update
- added profiles and services to nanoc.yaml
- created an internal module for the build code so that those
  dependencies are not included in the main module.
- upgraded Go to v1.22 and specified that only the GET method is valid
  for the root path.
2024-02-07 15:51:29 +00:00

13 lines
123 B
Go

//go:build ignore
package main
import (
"os"
"github.com/magefile/mage/mage"
)
func main() {
os.Exit(mage.Main())
}