(baseuri string)
| 9 | } |
| 10 | |
| 11 | func GithubBaseURL(baseuri string) GithubOption { |
| 12 | return func(s *SCM) error { |
| 13 | return s.setBaseURL(baseuri) |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | func GithubUploadURL(uploaduri string) GithubOption { |
| 18 | return func(s *SCM) error { |
nothing calls this directly
no test coverage detected