From ab78122036f25f71bca89d33f0d288d5abd4fd8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=80=97=E5=AD=90?= Date: Tue, 11 Jul 2023 19:52:08 +0800 Subject: [PATCH] feat: mysql80 plugin --- app/services/plugin.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/services/plugin.go b/app/services/plugin.go index e42d1196..caa139c1 100644 --- a/app/services/plugin.go +++ b/app/services/plugin.go @@ -3,6 +3,7 @@ package services import ( "github.com/goravel/framework/facades" + "panel/app/plugins/mysql80" "panel/app/models" "panel/app/plugins/openresty" @@ -54,6 +55,15 @@ func (r *PluginImpl) All() []PanelPlugin { Requires: openresty.Requires, Excludes: openresty.Excludes, }) + p = append(p, PanelPlugin{ + Name: mysql80.Name, + Author: mysql80.Author, + Description: mysql80.Description, + Slug: mysql80.Slug, + Version: mysql80.Version, + Requires: mysql80.Requires, + Excludes: mysql80.Excludes, + }) return p }