contracts/resource.go
2024-05-09 13:50:45 +08:00

10 lines
216 B
Go

package contracts
import "git.fsdpf.net/go/req"
// 资源
type GetResource func(code string) (req.Resource, bool)
// 获取用户
type GetUser func(uuid string, options ...req.UserRuntimeOption) (req.User, error)