forked from lxh/go-wxhelper
9 lines
186 B
Go
9 lines
186 B
Go
|
package config
|
||
|
|
||
|
// resourceItem
|
||
|
// @description: 资源项
|
||
|
type resourceItem struct {
|
||
|
Type string `json:"type" yaml:"type"` // 类型
|
||
|
Path string `json:"path" yaml:"path"` // 路径
|
||
|
}
|