mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-06 23:00:25 +08:00
14 lines
291 B
Go
14 lines
291 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package metrics
|
||
|
|
|
||
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||
|
|
|
||
|
|
type DeleteAction struct {
|
||
|
|
actionutils.ParentAction
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *DeleteAction) RunPost(params struct{}) {
|
||
|
|
this.Success()
|
||
|
|
}
|