manager/magefiles/manage.go

15 lines
209 B
Go
Raw Normal View History

2024-09-10 16:12:16 +01:00
//go:build mage
package main
import "github.com/magefile/mage/mg"
var Default = Manage
// Manage runs all the management tasks.
func Manage() error {
mg.Deps(Directories, Files, Templates)
return nil
}