diff options
Diffstat (limited to 'dashboard/dashapi/dashapi.go')
| -rw-r--r-- | dashboard/dashapi/dashapi.go | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dashboard/dashapi/dashapi.go b/dashboard/dashapi/dashapi.go index a5d5e267f..79b0368b1 100644 --- a/dashboard/dashapi/dashapi.go +++ b/dashboard/dashapi/dashapi.go @@ -100,20 +100,26 @@ type BugReport struct { KernelRepo string KernelBranch string KernelCommit string + KernelConfig []byte Log []byte Report []byte - KernelConfig []byte ReproC []byte ReproSyz []byte } type BugUpdate struct { ID string + Link string Status BugStatus ReproLevel ReproLevel DupOf string } +type BugUpdateReply struct { + OK bool + Text string +} + type PollRequest struct { Type string } |
