chore: magefiles cleanup

- removed main.go (I don't think this will ever be used)
- renamed all.go to manager.go
This commit is contained in:
Dan Anglin 2024-09-16 07:49:44 +01:00
parent 24edc6f7ce
commit 83f28f3083
Signed by: dananglin
GPG key ID: DC7C2989B0E30FEA
2 changed files with 5 additions and 14 deletions

View file

@ -1,13 +0,0 @@
//go:build ignore
package main
import (
"os"
"github.com/magefile/mage/mage"
)
func main() {
os.Exit(mage.Main())
}

View file

@ -10,7 +10,11 @@ var Default = All
// All runs all the management tasks.
func All() error {
mg.Deps(Directories, Files, Templates)
mg.Deps(
Directories,
Files,
Templates,
)
return nil
}