feat: Add Dao

This commit is contained in:
2023-06-19 00:50:46 +02:00
parent 59db3976fe
commit 5c1ed32cb6
30 changed files with 7344 additions and 6753 deletions

21
src/env.d.ts vendored
View File

@ -1,10 +1,11 @@
/// <reference types="astro/client" />
interface ImportMetaEnv {
CONFIGS_PATH?: string
PRUSASLICER_PATH?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
/// <reference types="astro/client" />
interface ImportMetaEnv {
CONFIGS_PATH?: string
PRUSASLICER_PATH?: string
MONGODB?: string
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}