treasurer/payway/hlogger.go
2023-05-16 19:21:56 +03:00

19 lines
223 B
Go

package payway
type ErrorType struct {
Err error
}
type InfoType struct {
Info interface{}
}
type ErrorQueueWorker ErrorType
type ErrorCreatePayout struct {
ErrorType
Url string
}
type InfoQueueWorkerDone InfoType