7 lines
259 B
Go
7 lines
259 B
Go
package clusters
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
)
|
|
type DeleteNodeAction struct { actionutils.ParentAction }
|
|
func (this *DeleteNodeAction) RunPost(params struct{ ClusterId int64; NodeId int64 }) { this.Success() }
|