Wrong lib folder

This commit is contained in:
Andrew Pennington 2024-08-15 22:40:30 +01:00
parent a62e39a776
commit 1b71a9cfd7
No known key found for this signature in database
GPG key ID: E9DA097213FD17EA

View file

@ -0,0 +1,5 @@
import process from 'process';
export async function getServerEnv(envVar: string) {
return process.env[envVar];
}