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/index/index.go
T
2020-07-22 09:59:40 +08:00

19 lines
314 B
Go

package index
import (
"github.com/iwind/TeaGo/actions"
stringutil "github.com/iwind/TeaGo/utils/string"
)
type IndexAction actions.Action
// 首页(登录页)
var TokenSalt = stringutil.Rand(32)
func (this *IndexAction) RunGet(params struct {
From string
}) {
this.WriteString("Hello, i am index")
}