mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 04:37:17 +08:00
10 lines
205 B
Go
10 lines
205 B
Go
package types
|
|
|
|
import "github.com/go-chi/chi/v5"
|
|
|
|
// App 应用元数据结构
|
|
type App struct {
|
|
Slug string `json:"slug"` // 插件标识
|
|
Route func(r chi.Router) `json:"-"` // 路由
|
|
}
|