Skip to content

Commit

Permalink
run gleam format
Browse files Browse the repository at this point in the history
  • Loading branch information
yuaanlin committed Apr 2, 2024
1 parent b0415c1 commit 52c3251
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/my_web_app.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ pub fn main() {
}

fn web_service(_request) {
let body = bytes_builder.from_string("Hello! This is a web app built with Gleam and deployed on Zeabur!")
let body =
bytes_builder.from_string(
"Hello! This is a web app built with Gleam and deployed on Zeabur!",
)
Response(200, [], mist.Bytes(body))
}

0 comments on commit 52c3251

Please sign in to comment.