treasurer/payway/hlogger.go

19 lines
223 B
Go
Raw Normal View History

2023-05-16 16:21:56 +00:00
package payway
type ErrorType struct {
Err error
}
type InfoType struct {
Info interface{}
}
type ErrorQueueWorker ErrorType
type ErrorCreatePayout struct {
ErrorType
Url string
}
type InfoQueueWorkerDone InfoType