mirror of https://github.com/OpenVidu/openvidu.git
15 lines
202 B
TypeScript
15 lines
202 B
TypeScript
![]() |
import { Injectable } from '@angular/core';
|
||
|
|
||
|
@Injectable()
|
||
|
export class LoggerServiceMock {
|
||
|
constructor() {}
|
||
|
|
||
|
get(prefix: string) {
|
||
|
return {
|
||
|
d: () => {},
|
||
|
w: () => {},
|
||
|
e: () => {}
|
||
|
};
|
||
|
}
|
||
|
}
|