This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
discord-dart/test.dart
Killer Boss Original b7c12bae1f add websocket connection
Co-authored-by: GabrieleYT9768 <GabrieleYT9768@users.noreply.github.com>
2023-08-01 21:20:43 +02:00

12 lines
240 B
Dart

import 'package:tn_discord/tn_discord.dart';
main() {
var client = Client();
client.login(
"OTU2NTczNDc3NzEwNzUzODMy.GmvBek.GEaV7uk-XPcpZ7Xbiohgp_0mm_5NVs5SeAAh7M");
client.on("READY", (data) {
print("Hi $data");
});
}