nyxx_interactions 2.0.3 copy "nyxx_interactions: ^2.0.3" to clipboard
nyxx_interactions: ^2.0.3 copied to clipboard

Nyxx Interactions Module. Discord library for Dart. Simple, robust framework for creating discord bots for Dart language.

example/example.dart

import "package:nyxx/nyxx.dart";
import "package:nyxx_interactions/interactions.dart";

void main() {
  final bot = Nyxx("<TOKEN>", GatewayIntents.allUnprivileged);
  Interactions(bot)
    ..registerSlashCommand(
        SlashCommandBuilder("itest", "This is test command", [
          CommandOptionBuilder(CommandOptionType.subCommand, "subtest", "This is sub test")
            ..registerHandler((event) => event.respond(MessageBuilder.content("This is example command")))
        ], guild: 302360552993456135.toSnowflake())
    )..syncOnReady();
}
9
likes
120
points
98
downloads

Publisher

verified publisherl7ssha.xyz

Weekly Downloads

Nyxx Interactions Module. Discord library for Dart. Simple, robust framework for creating discord bots for Dart language.

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

crypto, logging, nyxx

More

Packages that depend on nyxx_interactions