Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f78d9b1e6
|
@@ -1,16 +0,0 @@
|
|||||||
package scheduling
|
|
||||||
|
|
||||||
import (
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/google/uuid"
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
type ScheduledMessage struct {
|
|
||||||
Id uuid.UUID `json:"id"`
|
|
||||||
Scheduled time.Time `json:"scheduled"`
|
|
||||||
Created time.Time `json:"created"`
|
|
||||||
Status string `json:"status"`
|
|
||||||
UserId uuid.UUID `json:"user_id"`
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
package scheduling
|
|
||||||
|
|
||||||
|
|
||||||
const (
|
|
||||||
Ready = "READY"
|
|
||||||
Pending = "PENDING"
|
|
||||||
Processing = "PROCESSING"
|
|
||||||
Done = "DONE"
|
|
||||||
)
|
|
||||||
Reference in New Issue
Block a user