nycJSorg/angular-presentation

View on GitHub
libs/live/src/lib/live-service.service.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Injectable, Input } from '@angular/core';

@Injectable({
  providedIn: 'root'
})
export class LiveServiceService {
  @Input() user = 'pikachu';
  @Input() host = 'pirojok';
  @Input() session = 'live-share';
  @Input() bucket = 'config';

  constructor() {}
}