This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAdmin/internal/web/actions/default/setup/status.go
T

17 lines
361 B
Go

// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
package setup
import "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
var currentStatusText = ""
type StatusAction struct {
actionutils.ParentAction
}
func (this *StatusAction) RunPost(params struct{}) {
this.Data["statusText"] = currentStatusText
this.Success()
}