1 Star 0 Fork 0

gongpeng / keyauth-gp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
interface.go 283 Bytes
一键复制 编辑 原始数据 按行查看 历史
gongpeng 提交于 2023-04-12 06:15 . 添加审计功能
package audit
import "time"
const (
AppName = "audit"
)
type Service interface {
RPCServer
}
func NewOperateLog(who, resource, action string) *OperateLog {
return &OperateLog{
Username: who,
When: time.Now().UnixMilli(),
Resource: resource,
Action: action,
}
}
Go
1
https://gitee.com/gongpengABC/keyauth-gp.git
git@gitee.com:gongpengABC/keyauth-gp.git
gongpengABC
keyauth-gp
keyauth-gp
v0.0.9

搜索帮助