mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-15 21:20:25 +08:00
19 lines
406 B
Go
19 lines
406 B
Go
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package access
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/iwind/TeaGo/rands"
|
|
)
|
|
|
|
type RandomAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *RandomAction) RunPost(params struct{}) {
|
|
this.Data["random"] = rands.HexString(32)
|
|
|
|
this.Success()
|
|
}
|