mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
remove mistakenly added files
This commit is contained in:
parent
947c1f4991
commit
d47a11cfc2
|
|
@ -1 +0,0 @@
|
||||||
FMFZr5UtmZkKH6vPzSZijJbpF3ySKLaocHNtHghJJdw
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
dOeAMvn88EbHZAYx0EJNbrw97XhzbxZXXYOt7lF8zzQ
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
3QEq5HYhdzRX3Rozulasmj2XAYlWiX9zwIJY2JDn4uw
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
OJLAurMR0_MdWhsYAnGigFjClLrAaBwEDKIr5cddeuI
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
S_yh9zW_PpgN5r4ngIESd5GRarZfMIBUoaGOJZhjpc8
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
uWPueKrIXJdtgVGEQ9n8peXmz0B6qb1ohEmOqYgCdws
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
HfOXX-niktBwwUJOLP6sq_IdbIWkVPt1BqWBbKKd_0A
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
rOUTRmSFMJMPS0tUtqklfJo-_VAxMAFKCN8uprb0e64
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
EsXqSioUt0FTlNfLcVIAPs9U3pS69nO1NbabgpPkyR0
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
DPAF37_dnsfE2YZNDkvqBkFXs745JQ4I7KDftNEK5kM
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
8PsIJrWP09gJqW_OSLCSygXlPqaiCPryBk-VR8mT2rA
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
lYOBZxX217uXRwm85z7GNKsc7TViRZ9At3yUIGzkkPM
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
TaOooO3g0FyrLrwTwJG45AkS7mLT0O1btt1P2Vr1dEQ
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
BD9We2MPmCytIKlsH7Wug8bmW9_lU-Xrx_-c-qhpsEI
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
OlX8iM3rrAro8J_Ncb4OvN6tLKuyfjLMEOG_xJkbeHU
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
VMalTqVPTIUY-ynsIQJO4jG16KyxkMhsQgoKW3doOHo
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
tIXKI7IDrAikA_SbBTW6XqBQfR2uuWAg9WQYpiZ5DE0
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
LdpsUh6F78GzSXz5zfZUW2ZaUbjoCC-zGrCjnz4gtDU
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
8Ch2fssgHUf4qTO4kHM-9yofisoalAufolmFkSOvo40
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Yx9ZPZ11yaa64EApoZKLNNp0cIsp-GWoZmPk8Rg3yJA
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
0I35VFoN26g_y5ssRk0ilIjtmKD7s8oOVgqPCumt8Dw
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
HoddM2bqLSELN9ICAn5Wx42dr0pLHrr-a48K_Zhes2w
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
pdE7NC8nsUsxnywZah1akVtr324QI0zQVJOBabnyJSA
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
20WBny0Y2NnacGObQ91zCjRGQZdLhWzH8BaQfsQOga0
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Bf8C4ChWmNROZkKLoMxVzQ9q6XMI253sje3d4IK_95Y
|
|
||||||
|
|
@ -2,7 +2,7 @@ import { join } from "path";
|
||||||
import { exists, mkdir, writeFile, readFile } from "fs/promises";
|
import { exists, mkdir, writeFile, readFile } from "fs/promises";
|
||||||
|
|
||||||
export const writeToTempDirectory = async (filename: string, data: string) => {
|
export const writeToTempDirectory = async (filename: string, data: string) => {
|
||||||
const tempDir = join(process.cwd(), "temp");
|
const tempDir = join("/tmp/", "lysand");
|
||||||
if (!(await exists(tempDir))) await mkdir(tempDir);
|
if (!(await exists(tempDir))) await mkdir(tempDir);
|
||||||
|
|
||||||
const tempFile = join(tempDir, filename);
|
const tempFile = join(tempDir, filename);
|
||||||
|
|
@ -12,7 +12,7 @@ export const writeToTempDirectory = async (filename: string, data: string) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
export const readFromTempDirectory = async (filename: string) => {
|
export const readFromTempDirectory = async (filename: string) => {
|
||||||
const tempDir = join(process.cwd(), "temp");
|
const tempDir = join("/tmp/", "lysand");
|
||||||
if (!(await exists(tempDir))) await mkdir(tempDir);
|
if (!(await exists(tempDir))) await mkdir(tempDir);
|
||||||
|
|
||||||
const tempFile = join(tempDir, filename);
|
const tempFile = join(tempDir, filename);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue