Initial commit: Cargo template

main
Charlotte Som 2021-12-30 17:24:05 +00:00
commit 74d8634397
3 changed files with 11 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "geoip-api"
version = "0.1.0"
edition = "2021"
authors = ["charlotte ✨ <charlotte@lavender.software>"]
[dependencies]

3
src/main.rs Normal file
View File

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