Browse Source

Fix missing slice size

pull/1/head
Sam 5 years ago
parent
commit
8af4218aae
  1. 2
      main.go

2
main.go

@ -14,7 +14,7 @@ import ( @@ -14,7 +14,7 @@ import (
const cmdPrefix = "/"
var commands = make(map[string]Command)
var baseCommands = make([]string)
var baseCommands = make([]string, 0)
// Configurable section
var downloadPath = "/tmp/"

Loading…
Cancel
Save