10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { Injectable } from '@angular/core';
|
|
import { Socket } from 'ngx-socket-io';
|
|
|
|
@Injectable()
|
|
export class MeTubeSocket extends Socket {
|
|
constructor() {
|
|
super({ url: '', options: {path: document.location.pathname + 'socket.io'} });
|
|
}
|
|
}
|