9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
require("dotenv").config()
|
|
const { Bifrost } = require("./src/lib")
|
|
const bifrost = new Bifrost()
|
|
|
|
async function main() {
|
|
const client = await bifrost.login(process.env.USERNAME, process.env.PASSWORD)
|
|
}
|
|
|
|
main() |