diff options
author | Ryan Kavanagh <rak@rak.ac> | 2020-06-02 12:10:14 -0400 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2020-06-07 11:39:58 -0400 |
commit | 6fcb6e0f2fd4b93d094c68e844e7c1d0bd58a894 (patch) | |
tree | 985a8055db77097ec343304d63b4a5da2bbe0f84 /bin | |
parent | Rename request to geminiTransaction (diff) |
string_to_request -> make_request
Diffstat (limited to 'bin')
-rw-r--r-- | bin/leda.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/leda.ml b/bin/leda.ml index 8c20e4b..1438796 100644 --- a/bin/leda.ml +++ b/bin/leda.ml @@ -7,7 +7,7 @@ module R = Gemini.GeminiTransaction.GeminiTransaction(T) let () = Lwt_main.run begin - let req = R.string_to_request "gemini://gemini.circumlunar.space/\r\n" in + let req = R.make_request ~url:"gemini://gemini.circumlunar.space/\r\n" in let%lwt response = R.transaction req in match response with | Some (_, _, s) -> Lwt_io.printl s |