fonchain-fiee/pkg/model/common.go
2025-02-24 18:09:52 +08:00

25 lines
552 B
Go

package model
const (
HttpType = "http://"
HttpsType = "https://"
TmpArtworkDir = "./runtime/tmp/artworks"
TmpArtistDir = "./runtime/tmp/artists"
MediaPath = "./runtime/"
TplPath = "./data/"
ImgActionRotate = "rotate" //旋转
ImgActionRotate90 = "rotate90" //旋转
MediaTypeVideo = "video"
MediaTypeImage = "video"
)
const (
DateTimeFormat = "2006-01-02 15:04:05"
DateFormat = "2006-01-02"
)
type RespSendIndexes struct {
Code int `json:"code"`
Msg string `json:"msg"`
}