mirror of
https://github.com/stashapp/stash.git
synced 2025-12-18 04:44:37 +03:00
* Update to go 1.19 * Update dependencies * Update cross-compile script * Add missing targets to cross-compile-all * Update cache action to remove warning
12 lines
114 B
Go
12 lines
114 B
Go
package log
|
|
|
|
type Handler interface {
|
|
Handle(Record)
|
|
}
|
|
|
|
type Record struct {
|
|
Msg
|
|
Level Level
|
|
Names []string
|
|
}
|