mirror of
https://github.com/tribufu/sdk-js
synced 2025-06-20 12:24:35 +00:00
14 lines
317 B
JavaScript
14 lines
317 B
JavaScript
// Copyright (c) Tribufu. All Rights Reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import dotenv from 'dotenv';
|
|
import { TribufuClient } from '../build/index.mjs';
|
|
|
|
async function main() {
|
|
const client = new TribufuClient();
|
|
const config = await client.openidConfiguration();
|
|
console.log(config);
|
|
}
|
|
|
|
main();
|