Add reaction and message

This commit is contained in:
Henry Hiles 2025-08-01 17:38:12 -04:00
commit ae29162b5d
No known key found for this signature in database
5 changed files with 80 additions and 17 deletions

1
.vscode/launch.json vendored
View file

@ -6,6 +6,7 @@
"configurations": [
{
"name": "nexusbot",
"preLaunchTask": "rm-socket",
"program": "bin/nexusbot.dart",
"args": [
"--socket",

14
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "rm-socket",
"type": "shell",
"presentation": {
"reveal": "silent",
"close": true
},
"command": "rm socket || true"
}
]
}