16 lines
321 B
Go
Raw Normal View History

2024-07-26 11:50:02 +05:30
package kafka
2024-07-26 13:02:45 +05:30
const kafkaQueue = "kafka"
2024-07-26 11:50:02 +05:30
type MessagingQueue struct {
2024-07-26 13:02:45 +05:30
Start int64 `json:"start"`
End int64 `json:"end"`
2024-07-26 11:50:02 +05:30
Variables map[string]string `json:"variables,omitempty"`
}
2024-08-07 13:51:00 +05:30
type Clients struct {
2024-08-26 17:56:03 +05:30
ClientID string
ServiceInstanceID string
ServiceName string
2024-08-07 13:51:00 +05:30
}