11 lines
291 B
Go
11 lines
291 B
Go
|
package cop
|
||
|
|
||
|
import "github.com/go-git/go-git/v5"
|
||
|
|
||
|
// FileCOPGitRemote implements retrieving the latest stuff from an external git remote additionally to the FileDatabase functionality
|
||
|
type FileCOPGitRemote struct {
|
||
|
FileCOP
|
||
|
RemoteGitRepository string
|
||
|
gitRepo git.Repository
|
||
|
}
|