Missing imports and environment var for hub

This commit is contained in:
Daniel Krol 2022-05-10 15:24:54 -04:00
parent 14e9f4d925
commit a913d45060
2 changed files with 3 additions and 0 deletions

View file

@ -1,5 +1,7 @@
import {Injectable} from '@angular/core';
import {HttpClient} from '@angular/common/http';
import {Observable} from 'rxjs';
import {environment} from '../environments/environment';
@Injectable({
providedIn: 'root'

View file

@ -7,6 +7,7 @@ export const environment = {
hostname: 'localhost:4201',
nodeHostname: 'node.deso.org', // TODO deleteme
walletSyncHostname: 'localhost:8091',
hubHostname: '', // TODO put me in a config file, or make this whole file a config file
};
/*