(uploaduri string)
| 15 | } |
| 16 | |
| 17 | func GithubUploadURL(uploaduri string) GithubOption { |
| 18 | return func(s *SCM) error { |
| 19 | return s.setUploadURL(uploaduri) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | func GithubOrganizations(list []string) GithubOption { |
| 24 | return func(s *SCM) error { |
nothing calls this directly
no test coverage detected