summary refs log tree commit diff
path: root/api/src/util
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-06 02:33:12 +0200
committerGitHub <noreply@github.com>2022-08-06 02:33:12 +0200
commit88916865eec7812029ce9a150f6a7646ff09aea3 (patch)
treeb9cf427d3c173cbe4029e5230eda6acc4fd61cf0 /api/src/util
parentMerge branch 'master' into 2fa (diff)
parentMerge pull request #804 from MaddyUnderStars/feat/notesTable (diff)
downloadserver-88916865eec7812029ce9a150f6a7646ff09aea3.tar.xz
Merge branch 'master' into 2fa
Diffstat (limited to 'api/src/util')
-rw-r--r--api/src/util/entities/AssetCacheItem.ts3
-rw-r--r--api/src/util/index.ts1
2 files changed, 4 insertions, 0 deletions
diff --git a/api/src/util/entities/AssetCacheItem.ts b/api/src/util/entities/AssetCacheItem.ts
new file mode 100644

index 00000000..160dece6 --- /dev/null +++ b/api/src/util/entities/AssetCacheItem.ts
@@ -0,0 +1,3 @@ +export class AssetCacheItem { + constructor(public Key: string, public FilePath: string = "", public Headers: any = null as any) {} +} \ No newline at end of file diff --git a/api/src/util/index.ts b/api/src/util/index.ts
index ffbcf24e..ac439371 100644 --- a/api/src/util/index.ts +++ b/api/src/util/index.ts
@@ -6,3 +6,4 @@ export * from "./utility/RandomInviteID"; export * from "./handlers/route"; export * from "./utility/String"; export * from "./handlers/Voice"; +export * from "./entities/AssetCacheItem"; \ No newline at end of file