manager/magefiles/manager.go
Dan Anglin 83f28f3083
chore: magefiles cleanup
- removed main.go (I don't think this will ever be used)
- renamed all.go to manager.go
2024-09-16 07:49:44 +01:00

20 lines
251 B
Go

//go:build mage
package main
import "github.com/magefile/mage/mg"
const rootManagedDir string = "managed"
var Default = All
// All runs all the management tasks.
func All() error {
mg.Deps(
Directories,
Files,
Templates,
)
return nil
}