team-3/src/c3nav/editor/hosters/gitlab.py
2016-09-27 16:18:18 +02:00

10 lines
254 B
Python

from c3nav.editor.hosters.base import Hoster
class GitlabHoster(Hoster):
title = 'Gitlab'
def __init__(self, app_id, app_secret, **kwargs):
super().__init__(**kwargs)
self._app_id = app_id
self._app_secret = app_secret