fonchain-fiee/pkg/model/common.go

25 lines
564 B
Go
Raw Normal View History

2025-02-21 13:09:29 +00:00
package model
const (
2025-02-24 10:34:46 +00:00
HttpType = "http://"
HttpsType = "https://"
TmpArtworkDir = "./runtime/tmp/artworks"
TmpArtistDir = "./runtime/tmp/artists"
MediaPath = "./runtime/"
TplPath = "./data/"
ImgActionRotate = "rotate" //旋转
ImgActionRotate270 = "rotate270" //旋转
MediaTypeVideo = "video"
MediaTypeImage = "video"
2025-02-21 13:09:29 +00:00
)
const (
DateTimeFormat = "2006-01-02 15:04:05"
DateFormat = "2006-01-02"
)
type RespSendIndexes struct {
Code int `json:"code"`
Msg string `json:"msg"`
}