@rythra/connector-seyfert
v0.2.0
Published
Official **Seyfert** connector for [Rythra](https://github.com/Ekretos/Rythra). Bridges Seyfert gateway events and voice states with Rythra's framework-agnostic audio runtime.
Readme
@rythra/connector-seyfert 🔌
Official Seyfert connector for Rythra. Bridges Seyfert gateway events and voice states with Rythra's framework-agnostic audio runtime.
📦 Installation
# Using Bun
bun add @rythra/core @rythra/connector-seyfert seyfert
# Using npm
npm install @rythra/core @rythra/connector-seyfert seyfert🚀 Usage
import { Client } from 'seyfert';
import { Rythra } from '@rythra/core';
import { SeyfertConnector } from '@rythra/connector-seyfert';
const client = new Client();
const connector = new SeyfertConnector(client);
const rythra = new Rythra({
connector,
nodes: [
{
host: 'localhost',
port: 2333,
password: 'youshallnotpass',
secure: false,
},
],
});
client.events.on('botReady', async () => {
console.log('Seyfert client ready!');
await rythra.connect();
});
client.start();📄 License
MIT © Rythra Team
