summaryrefslogtreecommitdiff
path: root/magefile.go
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-03-10 18:23:01 -0600
committermo khan <mo@mokhan.ca>2025-03-10 18:23:01 -0600
commit2a9b689a0775a2ce831dc08c73fc0959fe3f9e83 (patch)
tree82ee40ba802b7eb3ab5709bdee1ac2c5f7aee1e1 /magefile.go
parent9a865953c4a95137faa336ca1d228d3ab2bc305f (diff)
chore: install mage using go tool
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 52dddeaa..92d071da 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)
}