Skip to content

Commit

Permalink
Remove network client
Browse files Browse the repository at this point in the history
  • Loading branch information
teclator committed Aug 8, 2024
1 parent 1b2ec19 commit bc49841
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 91 deletions.
4 changes: 0 additions & 4 deletions web/src/client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ import { L10nClient } from "./l10n";
import { ManagerClient } from "./manager";
import { StorageClient } from "./storage";
import { QuestionsClient } from "./questions";
import { NetworkClient } from "./network";
import { HTTPClient, WSClient } from "./http";

/**
* @typedef {object} InstallerClient
* @property {L10nClient} l10n - localization client.
* @property {ManagerClient} manager - manager client.
* @property {NetworkClient} network - network client.
* @property {StorageClient} storage - storage client.
* @property {QuestionsClient} questions - questions client.
* @property {() => WSClient} ws - Agama WebSocket client.
Expand All @@ -55,7 +53,6 @@ const createClient = (url) => {
const l10n = new L10nClient(client);
// TODO: unify with the manager client
const manager = new ManagerClient(client);
const network = new NetworkClient(client);
const storage = new StorageClient(client);
const questions = new QuestionsClient(client);

Expand All @@ -65,7 +62,6 @@ const createClient = (url) => {
return {
l10n,
manager,
network,
storage,
questions,
isConnected,
Expand Down
87 changes: 0 additions & 87 deletions web/src/client/network/index.js

This file was deleted.

0 comments on commit bc49841

Please sign in to comment.