Skip to content

Commit e0a4645

Browse files
yellowsmanlpil
authored andcommitted
replace BytesBuilder to BytesTree
`BytesBuilder` removed v0.48.0 replace `BytesTree`
1 parent 7be642c commit e0a4645

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Types and functions for HTTP clients and servers!
88
import gleam/http/elli
99
import gleam/http/response.{type Response}
1010
import gleam/http/request.{type Request}
11-
import gleam/bytes_builder.{type BytesBuilder}
11+
import gleam/bytes_tree.{type BytesTree}
1212
1313
// Define a HTTP service
1414
//
15-
pub fn my_service(_request: Request(t)) -> Response(BytesBuilder) {
16-
let body = bytes_builder.from_string("Hello, world!")
15+
pub fn my_service(_request: Request(t)) -> Response(BytesTree) {
16+
let body = bytes_tree.from_string("Hello, world!")
1717
1818
response.new(200)
1919
|> response.prepend_header("made-with", "Gleam")

0 commit comments

Comments
 (0)