mirror of
https://github.com/versia-pub/versia-go.git
synced 2025-12-06 06:28:18 +01:00
12 lines
162 B
Go
12 lines
162 B
Go
|
|
package task_dtos
|
||
|
|
|
||
|
|
import "github.com/google/uuid"
|
||
|
|
|
||
|
|
const (
|
||
|
|
FederateNote = "federate_note"
|
||
|
|
)
|
||
|
|
|
||
|
|
type FederateNoteData struct {
|
||
|
|
NoteID uuid.UUID `json:"noteID"`
|
||
|
|
}
|