tsk-8: Renamed pkg

This commit is contained in:
phoenix
2025-11-24 16:23:13 -05:00
parent fbaa9a48f3
commit b4359d931d
9 changed files with 0 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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"`
}