feat(backend): implement task creation and admin web

This commit is contained in:
QiuSW
2026-07-26 14:03:32 +08:00
parent 2b265c92fc
commit c5d3b215ff
58 changed files with 8773 additions and 83 deletions
+19
View File
@@ -0,0 +1,19 @@
package domain
import "time"
const (
AssetPurposeTaskReference = "TASK_REFERENCE"
NormalizedImageMediaType = "image/jpeg"
)
type Asset struct {
ID string
CreatorSubject string
Purpose string
MediaType string
SizeBytes int64
SHA256 string
StorageKey string
CreatedAt time.Time
}