mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
Add some TODO comments
This commit is contained in:
parent
b84aac098e
commit
b0e8951e6b
1 changed files with 6 additions and 6 deletions
|
@ -162,9 +162,9 @@ pub extern "C" fn roc_fx_sendRequest(roc_request: &glue::Request) -> glue::Respo
|
||||||
let body = RocList::from_slice(&bytes);
|
let body = RocList::from_slice(&bytes);
|
||||||
|
|
||||||
let metadata = Metadata {
|
let metadata = Metadata {
|
||||||
headers: RocList::empty(),
|
headers: RocList::empty(), // TODO
|
||||||
statusText: RocStr::empty(),
|
statusText: RocStr::empty(), // TODO
|
||||||
url: RocStr::empty(),
|
url: RocStr::empty(), // TODO
|
||||||
statusCode,
|
statusCode,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -177,9 +177,9 @@ pub extern "C" fn roc_fx_sendRequest(roc_request: &glue::Request) -> glue::Respo
|
||||||
let body = RocList::from_slice(&buffer);
|
let body = RocList::from_slice(&buffer);
|
||||||
|
|
||||||
let metadata = Metadata {
|
let metadata = Metadata {
|
||||||
headers: RocList::empty(),
|
headers: RocList::empty(), // TODO
|
||||||
statusText: RocStr::empty(),
|
statusText: RocStr::empty(), // TODO
|
||||||
url: RocStr::empty(),
|
url: RocStr::empty(), // TODO
|
||||||
statusCode,
|
statusCode,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue