21 lines
486 B
Go
21 lines
486 B
Go
// Package enums ...
|
|
//
|
|
// Description : enums ...
|
|
//
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
//
|
|
// Date : 2025-08-23 00:40
|
|
package enums
|
|
|
|
// RefPrefix 各种ref引用的前缀定义
|
|
type RefPrefix string
|
|
|
|
func (rp RefPrefix) String() string {
|
|
return string(rp)
|
|
}
|
|
|
|
const (
|
|
RefPrefixSchemaDefinition RefPrefix = "#/definitions/" // schema下的 $ref 下 definitions 的前缀
|
|
RefPrefixSchemaResponse RefPrefix = "#/responses/" // schema下的 $ref 下 response 的前缀
|
|
)
|