add hoster basics

This commit is contained in:
Laura Klünder 2016-09-13 15:18:24 +02:00
parent 6b7f05e2c7
commit 55fc17e872
12 changed files with 122 additions and 13 deletions

View file

@ -0,0 +1,8 @@
from .base import Hoster
class GitlabHoster(Hoster):
def __init__(self, app_id, app_secret, **kwargs):
super().__init__(**kwargs)
self._app_id = app_id
self._app_secret = app_secret