first commit

This commit is contained in:
Gzod01 2024-04-17 15:07:37 +02:00
commit beb953592c
4 changed files with 1978 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

1965
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "disco_wero_bot"
version = "0.1.0"
authors = ["WeRobot <contact@werobot.fr>", "GZod01 <gzod01@gzod01.fr>"]
edition = "2021"
[dependencies]
serenity = "0.12"
tokio = { version = "1.21.2", features = ["macros", "rt-multi-thread"] }

3
src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}