Closures (#9)

Closures

Signed-off-by: Etzelia <etzelia@hotmail.com>

Reviewed-on: https://git.birbmc.com/Etzelia/canopeas/pulls/9
Co-Authored-By: Etzelia <etzelia@hotmail.com>
Co-Committed-By: Etzelia <etzelia@hotmail.com>
pull/13/head
Etzelia 2021-06-20 21:35:48 +00:00
parent 8e83885118
commit 4fb7cc2928
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,