log-manager/modules/structs/log.go

18 lines
240 B
Go

package structs
// swagger:model LogBody
type LogBody struct {
Type string
Logs []string
}
type GetLogParams struct {
Type string
}
// /log/grouptasks?d=2021-08-01&f=i
type GetLogQuery struct {
D string // date
F string // filter
}