Files
automatisch/packages/backend/src/apps/gitlab/index.ts
2022-05-04 00:49:14 +02:00

16 lines
375 B
TypeScript

import Authentication from './authentication';
import {
IService,
IAuthentication,
IApp,
IJSONObject,
} from '@automatisch/types';
export default class Gitlab implements IService {
authenticationClient: IAuthentication;
constructor(appData: IApp, connectionData: IJSONObject) {
this.authenticationClient = new Authentication(appData, connectionData);
}
}