Make all the text white
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2025-05-29 10:20:54 -06:00
parent a16924413f
commit f9f094b1bf
Signed by: fnmain
GPG key ID: B67D7410F33A0F61
4 changed files with 1964 additions and 0 deletions

View file

@ -1,5 +1,6 @@
:root {
--energy: 0px;
color: white;
}
.title {

1951
thesandwich-backend/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,9 @@
[package]
name = "thesandwich-backend"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = "0.8.4"
maud = { version = "0.27.0", features = ["axum"] }
serenity = { version = "0.12.4", default-features = false, features = ["model", "rustls_backend", "http"] }

View file

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