Compare commits

..

3 Commits

Author SHA1 Message Date
353288bc05 Load configuration in server main
Some checks failed
Push Workflows / rustfmt (push) Failing after 5s
Push Workflows / tailwind-build (push) Successful in 5s
Push Workflows / test (push) Failing after 18s
Push Workflows / docs (push) Successful in 19s
Push Workflows / clippy (push) Failing after 15s
Push Workflows / build (push) Failing after 41s
Push Workflows / nix-build (push) Has been cancelled
2026-06-23 21:29:13 -04:00
5cbfa6ac9e Add web server launch message 2026-06-23 21:27:00 -04:00
f34aeafe0e Return Result from server main 2026-06-23 21:26:14 -04:00

View File

@@ -1,5 +1,5 @@
use crate::App; use crate::App;
use crate::util::error::{Contextualize, Error, Result}; use crate::util::error::Error;
use crate::server::config; use crate::server::config;
pub fn main() -> Result<()> { pub fn main() -> Result<()> {