GitlabConn holds the essential information to connect to the Gitlab API
| 29 | |
| 30 | // GitlabConn holds the essential information to connect to the Gitlab API |
| 31 | type GitlabConn struct { |
| 32 | api.RestConnection `mapstructure:",squash"` |
| 33 | api.AccessToken `mapstructure:",squash"` |
| 34 | } |
| 35 | |
| 36 | const GitlabCloudEndPoint string = "https://gitlab.com/api/v4/" |
| 37 | const GitlabApiClientData_UserId string = "UserId" |
nothing calls this directly
no outgoing calls
no test coverage detected