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

Add README.md

parent 800f9e8c
# ``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
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment