Closures #9

Merged
Etzelia merged 1 commits from refs/pull/9/head into main 2021-06-20 21:35:48 +00:00
1 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,8 @@ import (
)
func Echo(cfg *config.Config) {
for _, e := range cfg.Echoes {
for _, echo := range cfg.Echoes {
e := echo // Closure
commands = append(commands, &command{
name: e.Name,
aliases: e.Aliases,