aboutsummaryrefslogtreecommitdiff
path: root/src/client/Network.ts
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-08-21 10:57:53 -0400
committerbobzel <zzzman@gmail.com>2024-08-21 10:57:53 -0400
commit166d40bd856b85bd4bbde9f9ffe2c1ec0fb648d5 (patch)
treef6cfa4c2bd5c5a865d82c7e3806100f4a7719450 /src/client/Network.ts
parent27c4292e709e6bbba449e940d61d54b157092296 (diff)
more lint fixes after update
Diffstat (limited to 'src/client/Network.ts')
-rw-r--r--src/client/Network.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/Network.ts b/src/client/Network.ts
index 8876d8190..6c60c4151 100644
--- a/src/client/Network.ts
+++ b/src/client/Network.ts
@@ -8,7 +8,7 @@ import { Upload } from '../server/SharedMediaTypes';
* mainly provides methods that the client can use to begin the process of
* interacting with the server, such as fetching or uploading files.
*/
-// eslint-disable-next-line @typescript-eslint/no-namespace
+
export namespace Networking {
export async function FetchFromServer(relativeRoute: string) {
return (await fetch(relativeRoute)).text();