chore: remove unused gitlab app

This commit is contained in:
Ali BARIN
2022-10-09 15:04:52 +02:00
parent 3a186ebb1a
commit 54bbc0d79c
5 changed files with 0 additions and 367 deletions

View File

@@ -1,15 +0,0 @@
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);
}
}