diff options
Diffstat (limited to 'go/internal/gitlabnet/client.go')
-rw-r--r-- | go/internal/gitlabnet/client.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/go/internal/gitlabnet/client.go b/go/internal/gitlabnet/client.go index abc218f..c2453e5 100644 --- a/go/internal/gitlabnet/client.go +++ b/go/internal/gitlabnet/client.go @@ -17,8 +17,7 @@ const ( type GitlabClient interface { Get(path string) (*http.Response, error) - // TODO: implement posts - // Post(path string) (http.Response, error) + Post(path string, data interface{}) (*http.Response, error) } type ErrorResponse struct { |