diff --git a/icon.png b/icon.png new file mode 100644 index 00000000..4095360e Binary files /dev/null and b/icon.png differ diff --git a/package.json b/package.json index 3616fac9..0b13372e 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,8 @@ "category": "public.app-category.finance", "target": [ "dmg" - ] + ], + "icon": "icon.png" }, "dmg": { "icon": "src/assets/icons/256x256.icns", diff --git a/src/app/network.service.ts b/src/app/network.service.ts index ae78af4b..75f39be8 100644 --- a/src/app/network.service.ts +++ b/src/app/network.service.ts @@ -1,9 +1,13 @@ -import { Injectable } from '@angular/core'; +import {Injectable} from '@angular/core'; @Injectable({ providedIn: 'root' }) export class NetworkService { - constructor() { } + publicEndpoints: any[]; + + constructor() { + } + }