2022-03-23 02:12:54 +00:00
|
|
|
package appier
|
|
|
|
|
|
|
|
// RequestBody ...
|
|
|
|
type RequestBody struct {
|
|
|
|
Body []byte `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Payload ...
|
|
|
|
type Payload struct {
|
|
|
|
Data []byte
|
|
|
|
}
|
2022-03-23 03:36:14 +00:00
|
|
|
|
2022-03-24 10:04:34 +00:00
|
|
|
// RedisCfg ...
|
|
|
|
type RedisCfg struct {
|
|
|
|
URI string
|
|
|
|
Password string
|
2022-03-23 03:36:14 +00:00
|
|
|
}
|