This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
summer-utils/tables/web/http-favicon.go
2023-04-16 11:56:17 +01:00

10 lines
289 B
Go

package web
type HttpFavicon struct {
Id uint64 `json:"id" xorm:"pk autoincr"`
Host string `json:"host"`
Ico string `json:"ico"` // auto convert from png if present
Png string `json:"png"` // auto convert from svg if present
Svg string `json:"svg"` // can't be auto converted
}