mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-12-25 11:36:34 +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()
|
|
}
|