Files
sdk-js/examples/bot.js
2024-09-14 18:16:42 -03:00

11 lines
250 B
JavaScript

// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
import dotenv from 'dotenv';
import { TribufuBot } from '../build/index.mjs';
dotenv.config();
const bot = TribufuBot.fromEnv("TRIBUFU");
const botId = bot.getBotId();