mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-05-14 00:51:12 +03:00
14 lines
240 B
Go
14 lines
240 B
Go
package pages
|
|
|
|
import (
|
|
"github.com/GoAdminGroup/go-admin/context"
|
|
"github.com/GoAdminGroup/go-admin/template/types"
|
|
)
|
|
|
|
func DashboardPage(ctx *context.Context) (types.Panel, error) {
|
|
|
|
return types.Panel{
|
|
Title: "Dashboard",
|
|
}, nil
|
|
}
|