Files
Flowise/packages/components/src/index.ts
T
2023-05-19 18:20:41 +01:00

9 lines
196 B
TypeScript

import dotenv from 'dotenv'
import path from 'path'
const envPath = path.join(__dirname, '..', '..', '.env')
dotenv.config({ path: envPath })
export * from './Interface'
export * from './utils'