consts/file_type.go
2024-10-23 17:06:05 +08:00

20 lines
544 B
Go

// Package consts ...
//
// Description : consts ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-08-11 10:59
package consts
const (
FileTypeJson = "json" // json格式文件
FileTypeIni = "ini" // ini格式文件
FileTypeYml = "yml" // yml 格式文件
FileTypeYaml = "yaml" // yaml格式文件
FileTypeToml = "toml" // toml格式文件
FileTypeXml = "xml" // xml格式文件
FileTypeTxt = "txt" // txt格式文件
FileTypeUnknown = "unknown" // 未知格式
)