feat: parse and include referenced issues as prompt context (#12)

This commit is contained in:
2025-02-23 13:08:08 +01:00
parent 3a18c25b3c
commit a49254c9ed
11 changed files with 229 additions and 23 deletions

View File

@ -1,6 +1,7 @@
package model
type Issue struct {
ID string
Content string
ID string
Title string
Body string
}

View File

@ -1,6 +1,7 @@
package model
type Project struct {
ID string
Label string
ID string
Name string
Description string
}

View File

@ -0,0 +1,8 @@
package model
type Resource struct {
Name string
Type string
Syntax string
Content string
}