diff options
Diffstat (limited to 'client-web/source/sw/download.ts')
-rw-r--r-- | client-web/source/sw/download.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/client-web/source/sw/download.ts b/client-web/source/sw/download.ts index 02c5e1a..1db99b3 100644 --- a/client-web/source/sw/download.ts +++ b/client-web/source/sw/download.ts @@ -1,3 +1,8 @@ +/* + This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet) + which is licensed under the GNU Affero General Public License (version 3); see /COPYING. + Copyright (C) 2023 metamuffin <metamuffin.org> +*/ export const streams = new Map<string, { readable: ReadableStream, size: number }>() export function handle_download_request(path: string, event: FetchEvent) { |