14 lines
240 B
Go
14 lines
240 B
Go
|
package gitpb
|
||
|
|
||
|
func (repo *Repo) SetReadOnly(b bool) {
|
||
|
repo.ReadOnly = b
|
||
|
}
|
||
|
|
||
|
func (repo *Repo) SetTargetVersion(target string) {
|
||
|
repo.TargetVersion = target
|
||
|
}
|
||
|
|
||
|
func (repo *Repo) SetMasterBranchName(s string) {
|
||
|
repo.MasterBranchName = s
|
||
|
}
|