4114d85
1
2
3
4
5
6
7
8
9
import dotenv from 'dotenv' import path from 'path' const envPath = path.join(__dirname, '..', '..', '.env') dotenv.config({ path: envPath, override: true }) export * from './Interface' export * from './utils'