mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-16 21:50:24 +08:00
16 lines
258 B
Go
16 lines
258 B
Go
|
|
package acme
|
||
|
|
|
||
|
|
import (
|
||
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
type RunAction struct {
|
||
|
|
actionutils.ParentAction
|
||
|
|
}
|
||
|
|
|
||
|
|
func (this *RunAction) RunPost(params struct{}) {
|
||
|
|
time.Sleep(5 * time.Second) // TODO
|
||
|
|
this.Success()
|
||
|
|
}
|