feat(rabbitmq): Add dto for messages

This commit is contained in:
2025-08-10 22:21:06 +03:00
parent 7cfa8cc52b
commit b75dfc9849
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package dto
type TaskMessage struct {
Task string `json:"task"`
Payload string `json:"payload"`
}