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

13 lines
240 B
Dart
Raw Normal View History

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");
});
}