upload initial files

This commit is contained in:
ClariSys 2025-03-11 20:42:09 -07:00
parent 5ccce06bef
commit 7cd8126184
2 changed files with 13 additions and 0 deletions

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[package]
name = "cutebotrs"
version = "0.1.0"
edition = "2024"
[dependencies]
rand = "0.9.0"
reqwest = "0.12.13"

5
src/main.rs Normal file
View file

@ -0,0 +1,5 @@
use rand::Rng;
fn main() {
println!("Hello, world!");
}