fix: Fixed file permissions

This commit is contained in:
mrhid6
2025-12-29 09:24:43 +00:00
parent 5d273dacd0
commit 5c7b43a08e
12 changed files with 1 additions and 0 deletions

0
.gitignore vendored Normal file → Executable file
View File

0
Dockerfile Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
docker-compose.yaml Normal file → Executable file
View File

0
entry.sh Normal file → Executable file
View File

0
go.mod Normal file → Executable file
View File

0
go.sum Normal file → Executable file
View File

0
handler.go Normal file → Executable file
View File

0
main.go Normal file → Executable file
View File

0
makefile Normal file → Executable file
View File

1
models/task.go Normal file → Executable file
View File

@@ -9,6 +9,7 @@ import (
type Task struct { type Task struct {
ID primitive.ObjectID `bson:"_id,omitempty" json:"id"` ID primitive.ObjectID `bson:"_id,omitempty" json:"id"`
ApplicationId string `bson:"applicationId,omitempty" json:"applicationId"` ApplicationId string `bson:"applicationId,omitempty" json:"applicationId"`
EventId string `bson:"eventId,omitempty" json:"eventId"`
Payload interface{} `bson:"payload,omitempty" json:"payload"` Payload interface{} `bson:"payload,omitempty" json:"payload"`
Priority int `bson:"priority,omitempty" json:"priority"` // higher first Priority int `bson:"priority,omitempty" json:"priority"` // higher first
AvailableAt time.Time `bson:"availableAt,omitempty" json:"availableAt"` AvailableAt time.Time `bson:"availableAt,omitempty" json:"availableAt"`

0
server.go Normal file → Executable file
View File