Missing imports and environment var for hub
This commit is contained in:
parent
14e9f4d925
commit
a913d45060
2 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,7 @@
|
||||||
import {Injectable} from '@angular/core';
|
import {Injectable} from '@angular/core';
|
||||||
import {HttpClient} from '@angular/common/http';
|
import {HttpClient} from '@angular/common/http';
|
||||||
|
import {Observable} from 'rxjs';
|
||||||
|
import {environment} from '../environments/environment';
|
||||||
|
|
||||||
@Injectable({
|
@Injectable({
|
||||||
providedIn: 'root'
|
providedIn: 'root'
|
||||||
|
|
|
@ -7,6 +7,7 @@ export const environment = {
|
||||||
hostname: 'localhost:4201',
|
hostname: 'localhost:4201',
|
||||||
nodeHostname: 'node.deso.org', // TODO deleteme
|
nodeHostname: 'node.deso.org', // TODO deleteme
|
||||||
walletSyncHostname: 'localhost:8091',
|
walletSyncHostname: 'localhost:8091',
|
||||||
|
hubHostname: '', // TODO put me in a config file, or make this whole file a config file
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in a new issue