mirror of
https://github.com/house-of-vanity/hexound.ru.git
synced 2025-07-07 06:44:07 +00:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
import {Component, OnInit} from '@angular/core';
|
|
import {RestService} from './services/rest.services';
|
|
import {Urls} from './models/urls.models';
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: './app.component.html',
|
|
styleUrls: ['./app.component.css']
|
|
})
|
|
export class AppComponent {}
|
|
|
|
|