diff options
Diffstat (limited to 'cap.go')
-rw-r--r-- | cap.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,8 +6,10 @@ import ( var Caps = map[string]string{} -var capls string -var capls302 string +var ( + capls string + capls302 string +) // Can't be in init() because Caps will be registered with init in the future // and init()s are executed by filename alphabetical order |