Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion cmd/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import (
"strings"

"github.com/gorilla/mux"
"github.com/lib/pq"
"github.com/rs/cors"
a2aserver "github.com/techbuzzz/agent-shaker/internal/a2a/server"
"github.com/techbuzzz/agent-shaker/internal/database"
Expand Down
16 changes: 8 additions & 8 deletions internal/models/standup.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ type DailyStandup struct {
AgentID uuid.UUID `json:"agent_id" db:"agent_id"`
ProjectID uuid.UUID `json:"project_id" db:"project_id"`
StandupDate time.Time `json:"standup_date" db:"standup_date"`
Did string `json:"did" db:"did"` // What I did yesterday
Doing string `json:"doing" db:"doing"` // What I'm doing today
Done string `json:"done" db:"done"` // What I plan to complete
Blockers string `json:"blockers" db:"blockers"` // Any blockers
Challenges string `json:"challenges" db:"challenges"` // Current challenges
ReferenceLinks string `json:"reference_links" db:"reference_links"` // Links, docs, etc.
Did string `json:"did" db:"did"` // What I did yesterday
Doing string `json:"doing" db:"doing"` // What I'm doing today
Done string `json:"done" db:"done"` // What I plan to complete
Blockers string `json:"blockers" db:"blockers"` // Any blockers
Challenges string `json:"challenges" db:"challenges"` // Current challenges
ReferenceLinks string `json:"references" db:"reference_links"` // Links, docs, etc.
CreatedAt time.Time `json:"created_at" db:"created_at"`
UpdatedAt time.Time `json:"updated_at" db:"updated_at"`
}
Expand All @@ -32,7 +32,7 @@ type CreateStandupRequest struct {
Done string `json:"done"`
Blockers string `json:"blockers"`
Challenges string `json:"challenges"`
ReferenceLinks string `json:"reference_links"`
ReferenceLinks string `json:"references"`
}

// UpdateStandupRequest represents a request to update a daily standup
Expand All @@ -42,7 +42,7 @@ type UpdateStandupRequest struct {
Done string `json:"done"`
Blockers string `json:"blockers"`
Challenges string `json:"challenges"`
ReferenceLinks string `json:"reference_links"`
ReferenceLinks string `json:"references"`
}

// StandupWithAgent extends DailyStandup with agent information
Expand Down
Loading