diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/Network.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/Network.ts b/src/client/Network.ts index 1ab9c6fc5..d606b9854 100644 --- a/src/client/Network.ts +++ b/src/client/Network.ts @@ -2,6 +2,11 @@ import { Utils } from '../Utils'; import requestPromise = require('request-promise'); import { Upload } from '../server/SharedMediaTypes'; +/** + * Networking is repsonsible for connecting the client to the server. Networking + * mainly provides methods that the client can use to begin the process of + * interacting with the server, such as fetching or uploading files. + */ export namespace Networking { export async function FetchFromServer(relativeRoute: string) { return (await fetch(relativeRoute)).text(); |