summary refs log tree commit diff stats
path: root/commands/terminal/terminal.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/terminal/terminal.go')
-rw-r--r--commands/terminal/terminal.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/terminal/terminal.go b/commands/terminal/terminal.go
index fb1583f..710d796 100644
--- a/commands/terminal/terminal.go
+++ b/commands/terminal/terminal.go
@@ -8,9 +8,9 @@ var (
 	TerminalCommands *commands.Commands
 )
 
-func register(name string, cmd commands.AercCommand) {
+func register(cmd commands.Command) {
 	if TerminalCommands == nil {
 		TerminalCommands = commands.NewCommands()
 	}
-	TerminalCommands.Register(name, cmd)
+	TerminalCommands.Register(cmd)
 }