First commit

This commit is contained in:
Natsu Kagami 2019-10-25 14:07:24 -04:00
commit b7907a72e2
9 changed files with 1748 additions and 0 deletions

2
youmubot-osu/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target
**/*.rs.bk

10
youmubot-osu/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "youmubot-osu"
version = "0.1.0"
authors = ["Natsu Kagami <natsukagami@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serenity = "0.7"

3
youmubot-osu/src/main.rs Normal file
View file

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