diff options
Diffstat (limited to 'plugin_lua.go')
-rw-r--r-- | plugin_lua.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin_lua.go b/plugin_lua.go index 55c1d10..b02752d 100644 --- a/plugin_lua.go +++ b/plugin_lua.go @@ -119,7 +119,7 @@ func (p *luaPlugin) SetRoutes(group *echo.Group) { } _, name := filepath.Split(filepath.Dir(p.filename)) - group.Static("/plugins/" + name + "/assets", filepath.Dir(p.filename) + "/public/assets") + group.Static("/plugins/"+name+"/assets", filepath.Dir(p.filename)+"/public/assets") } func (p *luaPlugin) Close() error { |