mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 23:18:43 +08:00
14 lines
260 B
Go
14 lines
260 B
Go
package plugin
|
|
|
|
import (
|
|
"github.com/go-chi/chi/v5"
|
|
|
|
_ "github.com/TheTNB/panel/internal/plugin/fail2ban"
|
|
_ "github.com/TheTNB/panel/internal/plugin/openresty"
|
|
"github.com/TheTNB/panel/pkg/pluginloader"
|
|
)
|
|
|
|
func Boot(r chi.Router) {
|
|
pluginloader.Boot(r)
|
|
}
|