14 lines
331 B
Go
14 lines
331 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package ticket
|
|
|
|
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
type DeleteLogAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *DeleteLogAction) RunPost(params struct{}) {
|
|
this.Success()
|
|
}
|