Skip to content

Commit

Permalink
feat: cool shit
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Mar 12, 2024
1 parent cf01acd commit 049048d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions doseid/src/server/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,24 @@ pub async fn start_server(config: &'static Config) -> anyhow::Result<()> {
let listener = TcpListener::bind(&address)
.await
.context("Failed to start server")?;
println!(
"
@@@@@@@@@@@. &@@@@.
@@@ @@@@ .@@@ @@, #@@&
@@% &@@@# &@@@ @@ {}
@@@@@@. .@@@& &@@
@@ *@@@@ %@@@ Running in standalone mode
@@ .@@@@( @@@@ Port {}
@@@@ #@@@@ Node Port {}
@@@ .@@@@% %@@@ @@
/@@ .&* @@@@. (@@@@ @@%
@@@ ,@@@@@@ @@@ https://dosei.io
.@@@@@@@% @@@@@@@@
",
env!("CARGO_PKG_DESCRIPTION"),
&config.address.port,
&config.node_info.address.port
);
info!("Dosei running on http://{} (Press CTRL+C to quit", address);
axum::serve(listener, app).await?;
Ok(())
Expand Down

0 comments on commit 049048d

Please sign in to comment.