manager/magefiles/all.go
Dan Anglin a909803b29
refactor: reorganise magefiles
Reorganise and refactor the magefiles to make it more manageable and
reduce duplication.
2024-09-14 05:58:43 +01:00

16 lines
241 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
}