Commit 624202db authored by Roman Lacko's avatar Roman Lacko
Browse files

Add README.md

parent 800f9e8c
Loading
Loading
Loading
Loading

README.md

0 → 100644
+18 −0
Original line number Original line Diff line number Diff line
# ``GitLab::API``

Lightweight implementation of ``GitLab``'s API in Perl.

## Quick start

```{.pl}
use GitLab;

my $gitlab = GitLab::API->new(
    URL        => "https://gitlab.fi.muni.cz/api/v3",
    AuthToken  => "...",
    DieOnError => 1
);

my $users  = $gitlab->users();
my $groups = $gitlab->groups(search => "pb161");
```
 No newline at end of file