Documentation ¶
Index ¶
- Variables
- func Contains(val uint64, slice ...uint64) bool
- func DateMSK_ToLocaleSepString(mock ...time.Time) string
- func DateMSK_ToLocaleString(mock ...time.Time) string
- func GetAuthLinks() fiber.Map
- func HashSHA512(str string) string
- func IsEmptyStruct(object interface{}) bool
- func IterateStruct(s interface{}, callback func(field string, value interface{}))
- func TimeMSK_ToLocaleString(mock ...time.Time) string
- func TimeMSK_ToString(mock ...time.Time) string
- func TimeMSK_ToTime(mock ...time.Time) time.Time
- type Sitemap
- type SitemapPath
- type URLParams
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrorStatus = map[string]string{
"400": "Некорректный запрос",
"401": "Необходима авторизация",
"403": "Запрещено",
"404": "Не найдено",
"408": "Истекло время ожидания",
"413": "Слишком большая нагрузка",
"414": "Слишком длинный URI",
"429": "Слишком много запросов",
"500": "Внутреняя ошибка сервера",
"502": "Неверный шлюз",
"503": "Сервис недоступен",
"505": "Версия HTTP не поддерживается",
"520": "Неизвестная ошибка",
}
Error statuses
Functions ¶
func DateMSK_ToLocaleSepString ¶
Time functions: date to locale string with - separator
func DateMSK_ToLocaleString ¶
Time functions: date to locale string
func IterateStruct ¶
func IterateStruct(s interface{}, callback func(field string, value interface{}))
Iterate over struct with callback
func TimeMSK_ToLocaleString ¶
Time functions: to locale string
Types ¶
type Sitemap ¶
type Sitemap []SitemapPath
Sitemap: type
func (*Sitemap) ToHTMLString ¶
Sitemap: convert sitemap to HTML
type SitemapPath ¶
type SitemapPath struct { ID int64 `json:"id"` ParentID int64 `json:"parent_id"` Title string `json:"title"` Path string `json:"path"` Priority float64 `json:"priority"` Children []SitemapPath `json:"children"` }
Sitemap: SitemapPath type
Click to show internal directories.
Click to hide internal directories.