aboutsummaryrefslogtreecommitdiffstats
path: root/pygithub3/github.py
blob: 9d9ca9864779e0588d65259b44e7db18fc532480 (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