Files
EdgeAdmin/internal/web/actions/default/servers/users/plans.go

22 lines
409 B
Go
Raw Normal View History

2021-11-09 15:36:18 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
2022-10-14 09:57:24 +08:00
//go:build !plus
2021-11-09 15:36:18 +08:00
package users
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
"github.com/iwind/TeaGo/maps"
)
type PlansAction struct {
actionutils.ParentAction
}
func (this *PlansAction) RunPost(params struct {
UserId int64
ServerId int64
}) {
2022-10-14 09:57:24 +08:00
this.Data["plans"] = []maps.Map{}
2021-11-09 15:36:18 +08:00
this.Success()
}