feat: initial commit
This commit is contained in:
6
internal/core/model/issue.go
Normal file
6
internal/core/model/issue.go
Normal file
@ -0,0 +1,6 @@
|
||||
package model
|
||||
|
||||
type Issue struct {
|
||||
ID string
|
||||
Content string
|
||||
}
|
6
internal/core/model/project.go
Normal file
6
internal/core/model/project.go
Normal file
@ -0,0 +1,6 @@
|
||||
package model
|
||||
|
||||
type Project struct {
|
||||
ID string
|
||||
Label string
|
||||
}
|
8
internal/core/model/user.go
Normal file
8
internal/core/model/user.go
Normal file
@ -0,0 +1,8 @@
|
||||
package model
|
||||
|
||||
type User struct {
|
||||
ID string
|
||||
Provider string
|
||||
AccessToken string
|
||||
IDToken string
|
||||
}
|
Reference in New Issue
Block a user