25 lines
590 B
Go
Raw Normal View History

2024-07-26 11:50:02 +05:30
package kafka
const KafkaQueue = "kafka"
2024-07-26 13:02:45 +05:30
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"`
EvalTime int64 `json:"eval_time"`
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-27 18:27:44 +05:30
Hash map[string]struct{}
ClientID []string
ServiceInstanceID []string
ServiceName []string
TopicName []string
2024-08-07 13:51:00 +05:30
}
type OnboardingResponse struct {
Attribute string `json:"attribute"`
Message string `json:"error_message"`
Status string `json:"status"`
}