Bifrost/test.js
azures04 62b73e2a79 Update env variable names for credentials
Renamed USERNAME and PASSWORD to CRED_USERNAME and CRED_PASSWORD in .env.example and updated their usage in test.js to improve clarity and avoid potential conflicts.
2026-01-19 02:12:16 +01:00

9 lines
225 B
JavaScript

require("dotenv").config()
const { Bifrost } = require("./src/lib")
const bifrost = new Bifrost()
async function main() {
const client = await bifrost.login(process.env.CRED_USERNAME, process.env.CRED_PASSWORD)
}
main()