Files
automatisch/packages/backend/src/apps/firebase/index.ts
2022-03-07 18:26:31 +03:00

16 lines
377 B
TypeScript

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