summaryrefslogtreecommitdiff
path: root/magefile.go
diff options
context:
space:
mode:
Diffstat (limited to 'magefile.go')
-rw-r--r--magefile.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/magefile.go b/magefile.go
index 52dddea..92d071d 100644
--- a/magefile.go
+++ b/magefile.go
@@ -15,7 +15,7 @@ import (
// Default target to run when none is specified
// If not set, running mage will list available targets
-var Default = Run
+var Default = Servers
// Run the Identity Provider
func Idp() error {
@@ -85,7 +85,7 @@ func Protos() error {
}
// Run All the servers
-func Run(ctx context.Context) {
+func Servers(ctx context.Context) {
mg.CtxDeps(ctx, Idp, UI, Api, Gateway)
}