Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
change port to 8080 πŸ˜΅β€πŸ’«
Browse files Browse the repository at this point in the history
  • Loading branch information
katsumi143 committed Dec 15, 2023
1 parent 715e0a4 commit f2c1362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mellow/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub enum SlashResponse {
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
SimpleLogger::new().init().unwrap();

let address = SocketAddr::from(([127, 0, 0, 1], 80));
let address = SocketAddr::from(([127, 0, 0, 1], 8080));
let listener = TcpListener::bind(address).await?;
log::info!("now listening for http interactions!");

Expand Down

0 comments on commit f2c1362

Please sign in to comment.