Reconcile docs with reality; fix module graph, token compare, health #1

Open
kami wants to merge 216 commits from webui-and-audit-reconciliation into master
Showing only changes of commit 8af6bbdc8e - Show all commits
+5 -2
View File
@@ -13,7 +13,8 @@ import (
)
type Brief struct {
From, To time.Time `json:"from"`
From time.Time `json:"from"`
To time.Time `json:"to"`
Completed int `json:"completed"`
Failed int `json:"failed"`
Blocked int `json:"blocked"`
@@ -22,7 +23,9 @@ type Brief struct {
Git GitSync `json:"git_sync"`
}
type GitSync struct {
Branch, Head, Status string `json:"branch" json:"head" json:"status"`
Branch string `json:"branch"`
Head string `json:"head"`
Status string `json:"status"`
}
type StandupItem struct {