feat: using Bun instead of Node.js\!

This commit is contained in:
2026-01-22 20:18:06 +01:00
parent 01fb0aedf5
commit e34cfe5af1
10 changed files with 80 additions and 154 deletions

8
functions/aemet/env.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
declare module "bun" {
interface Env {
APPWRITE_FUNCTION_API_ENDPOINT: string;
APPWRITE_FUNCTION_PROJECT_ID: string;
}
}
export {};