10 lines
254 B
Python
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
|