19 lines
415 B
Go
19 lines
415 B
Go
|
// Package static ...
|
||
|
//
|
||
|
// Description : static
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2021/12/24 2:18 PM
|
||
|
package static
|
||
|
|
||
|
// MapRule 定义映射规则
|
||
|
//
|
||
|
// Author : go_developer@163.com<白茶清欢>
|
||
|
//
|
||
|
// Date : 2:18 PM 2021/12/24
|
||
|
type MapRule struct {
|
||
|
URIPrefix string `json:"uri_prefix"` // 路由前缀
|
||
|
StaticDirPath string `json:"static_dir_path"` // 静态资源路由
|
||
|
}
|