This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/config/conf_casbin.go
2024-08-24 16:31:40 +08:00

11 lines
226 B
Go

package config
type Casbin struct {
// 权限模型文件路径
ModelPath string `yaml:"model-path"`
// 数据库前缀
TablePrefix string `yaml:"table-prefix"`
// 数据库表明
TableName string `yaml:"table-name"`
}