Initial Commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-06-27 21:42:59 +02:00
commit daf58bb4ca
30 changed files with 3040 additions and 0 deletions

13
pkg/domain/repo.go Normal file
View File

@ -0,0 +1,13 @@
package domain
type Repo struct {
Avatar string
Branch string
FullName string
Link string
Name string
Owner string
Private bool
SCM string
Trusted bool
}