blob: 06139ca9aff8a84446fea2bbee74551dc61e20e6 [file] [log] [blame]
Michael Landodd603392017-07-12 00:54:52 +03001/*-
2 * ============LICENSE_START=======================================================
3 * SDC
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
ys969316a9fce2020-01-19 13:50:02 +020010 *
Michael Landodd603392017-07-12 00:54:52 +030011 * http://www.apache.org/licenses/LICENSE-2.0
ys969316a9fce2020-01-19 13:50:02 +020012 *
Michael Landodd603392017-07-12 00:54:52 +030013 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
ys969316a9fce2020-01-19 13:50:02 +020020import { Component, ViewContainerRef} from '@angular/core';
Michael Landoed64b5e2017-06-09 03:19:04 +030021import { AuthenticationService } from './services/authentication.service';
22
23@Component({
24 selector: 'app-root',
ys969316a9fce2020-01-19 13:50:02 +020025 templateUrl: './app.component.html'
Michael Landoed64b5e2017-06-09 03:19:04 +030026})
27export class AppComponent {
28
ys969316a9fce2020-01-19 13:50:02 +020029 constructor(auth: AuthenticationService, public viewContainerRef: ViewContainerRef){
Michael Landoed64b5e2017-06-09 03:19:04 +030030
31 }
32
33}