aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/github.py
blob: 0bd3bf76a98f19bd04be11a7dfac2bd0ed7d3a88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python
# -*- encoding: utf-8 -*-

from pygithub3.services.users import User


class GitHub(object):
    """ Main entrance """

    def __init__(self, **config):
        self._users = User(**config)

    @property
    def users(self):
        return self._users