refactor: workers

This commit is contained in:
DevMiner 2024-08-29 00:46:32 +02:00
parent 02ad720439
commit 8fa44e5f72
20 changed files with 764 additions and 465 deletions

View file

@ -0,0 +1,11 @@
package task_dtos
import "github.com/google/uuid"
const (
FederateNote = "federate_note"
)
type FederateNoteData struct {
NoteID uuid.UUID `json:"noteID"`
}