mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 03:22:32 +08:00
14 lines
248 B
Go
14 lines
248 B
Go
package apps
|
|
|
|
import (
|
|
"github.com/go-chi/chi/v5"
|
|
|
|
_ "github.com/TheTNB/panel/internal/apps/fail2ban"
|
|
_ "github.com/TheTNB/panel/internal/apps/openresty"
|
|
"github.com/TheTNB/panel/pkg/apploader"
|
|
)
|
|
|
|
func Boot(r chi.Router) {
|
|
apploader.Boot(r)
|
|
}
|