manager/magefiles/all.go

17 lines
241 B
Go
Raw Normal View History

//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
}