aboutsummaryrefslogtreecommitdiffstats
path: root/commands/global.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/global.go')
-rw-r--r--commands/global.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/commands/global.go b/commands/global.go
deleted file mode 100644
index ec7d623c..00000000
--- a/commands/global.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package commands
-
-var GlobalCommands *Commands
-
-func register(cmd Command) {
- if GlobalCommands == nil {
- GlobalCommands = NewCommands()
- }
- GlobalCommands.Register(cmd)
-}