diff options
| author | Claude Agent <agent@doot.local> | 2026-03-25 05:17:35 +0000 |
|---|---|---|
| committer | Claude Agent <agent@doot.local> | 2026-03-25 05:17:35 +0000 |
| commit | b58787cfec0bd07abc316c66dc9be6c10b8113c6 (patch) | |
| tree | e1c788094f51bdab0bce8ad38c8d6638c9079bb9 /internal/models/claudomator.go | |
| parent | 2db5020047640361066510f29f908ca9fd1c99aa (diff) | |
feat: add Claudomator stories as atom source in Doot tasks tab
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'internal/models/claudomator.go')
| -rw-r--r-- | internal/models/claudomator.go | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/internal/models/claudomator.go b/internal/models/claudomator.go new file mode 100644 index 0000000..0883de3 --- /dev/null +++ b/internal/models/claudomator.go @@ -0,0 +1,14 @@ +package models + +import "time" + +type ClaudomatorStory struct { + ID string `json:"id"` + Title string `json:"title"` + Description string `json:"description"` + Status string `json:"status"` + ProjectID string `json:"project_id"` + BranchName string `json:"branch_name"` + CreatedAt time.Time `json:"created_at"` + UpdatedAt time.Time `json:"updated_at"` +} |
