diff options
author | Steve Manuel <nilslice@gmail.com> | 2016-12-19 11:04:20 -0800 |
---|---|---|
committer | Steve Manuel <nilslice@gmail.com> | 2016-12-19 11:04:20 -0800 |
commit | 43fd3472dd9d19aa1f602ce3fd3555f03312b99b (patch) | |
tree | fcd1a2e891a530d8812538c8bebe39f6fc491980 /system/admin/admin.go | |
parent | bab8caaf4d599da47f296bc9e2940b11cb37aa4f (diff) |
adding http port to config and removing hardcoded url from addons api
Diffstat (limited to 'system/admin/admin.go')
-rw-r--r-- | system/admin/admin.go | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/system/admin/admin.go b/system/admin/admin.go index 768a740..78f607d 100644 --- a/system/admin/admin.go +++ b/system/admin/admin.go @@ -86,10 +86,9 @@ var endAdminHTML = ` </html>` type admin struct { - Logo string - Types map[string]func() interface{} - Subview template.HTML - HTTPPort string + Logo string + Types map[string]func() interface{} + Subview template.HTML } // Admin ... |