Make all the text white
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
a16924413f
commit
f9f094b1bf
4 changed files with 1964 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
|||
:root {
|
||||
--energy: 0px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.title {
|
||||
|
|
1951
thesandwich-backend/Cargo.lock
generated
Normal file
1951
thesandwich-backend/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
9
thesandwich-backend/Cargo.toml
Normal file
9
thesandwich-backend/Cargo.toml
Normal 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"] }
|
3
thesandwich-backend/src/main.rs
Normal file
3
thesandwich-backend/src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Add table
Reference in a new issue