Files
EdgeAdmin/internal/web/actions/default/setup/mysql/installLogs.go
GoEdgeLab d7d0c8fbfe v1.4.1
2024-07-27 15:42:58 +08:00

18 lines
487 B
Go

// Copyright 2023 GoEdge CDN goedge.cdn@gmail.com. All rights reserved. Official site: https://goedge.cloud .
package mysql
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/setup/mysql/mysqlinstallers/utils"
)
type InstallLogsAction struct {
actionutils.ParentAction
}
func (this *InstallLogsAction) RunPost(params struct{}) {
this.Data["logs"] = utils.SharedLogger.ReadAll()
this.Success()
}