Cargo init.

This commit is contained in:
Tom Alexander 2024-07-14 14:52:45 -04:00
parent 4f1ea471a3
commit ecce4f04c9
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "webhook_bridge"
version = "0.1.0"
edition = "2021"
[dependencies]

3
src/main.rs Normal file
View File

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