feat: parse and include referenced issues as prompt context (#12)
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
package model
|
||||
|
||||
type Issue struct {
|
||||
ID string
|
||||
Content string
|
||||
ID string
|
||||
Title string
|
||||
Body string
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
package model
|
||||
|
||||
type Project struct {
|
||||
ID string
|
||||
Label string
|
||||
ID string
|
||||
Name string
|
||||
Description string
|
||||
}
|
||||
|
8
internal/core/model/resource.go
Normal file
8
internal/core/model/resource.go
Normal file
@ -0,0 +1,8 @@
|
||||
package model
|
||||
|
||||
type Resource struct {
|
||||
Name string
|
||||
Type string
|
||||
Syntax string
|
||||
Content string
|
||||
}
|
Reference in New Issue
Block a user