Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Jul 6, 2022
0 parents commit c07ad28
Show file tree
Hide file tree
Showing 12 changed files with 1,811 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
configuration.json
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "submodules/serenity"]
path = submodules/serenity
url = git@github.com:serenity-rs/serenity.git
41 changes: 41 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'revanced-discord-bot'",
"cargo": {
"args": [
"build",
"--bin=revanced-discord-bot",
"--package=revanced-discord-bot"
],
"filter": {
"name": "revanced-discord-bot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'revanced-discord-bot'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=revanced-discord-bot",
"--package=revanced-discord-bot"
],
"filter": {
"name": "revanced-discord-bot",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading

0 comments on commit c07ad28

Please sign in to comment.