src.app.core.services.agent-network.service.ts Maven / Gradle / Ivy
The newest version!
/*
* SPDX-FileCopyrightText: 2017-2024 Enedis
*
* SPDX-License-Identifier: Apache-2.0
*
*/
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { Agent, AgentGraphe, AgentNetwork, NetworkConfiguration, TargetId } from '@model';
import { environment } from '@env/environment';
import { HttpClient } from '@angular/common/http';
@Injectable({
providedIn: 'root'
})
export class AgentNetworkService {
constructor(private http: HttpClient) { }
sendAndSaveConfiguration(configuration: NetworkConfiguration): Observable
© 2015 - 2024 Weber Informatics LLC | Privacy Policy