Upload files to "/"

This commit is contained in:
2026-04-09 16:43:32 +03:30
parent 542cc932a9
commit d6c433b94a
15 changed files with 13429 additions and 4260 deletions
+9 -2
View File
@@ -1,3 +1,10 @@
import { saveRun } from "./saveImpl";
import saveImpl from "./saveImpl";
import { StateProvider } from "./stateProvider";
saveRun(true);
async function run(): Promise<void> {
await saveImpl(new StateProvider());
}
run();
export default run;