19 lines
223 B
Go
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
|