From 9757bf637791b8c2169225990682e5d42141e97d Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 12 Oct 2023 19:26:52 +0200 Subject: refactor(tvix/*store): helper for channel creation from url This moves the repetitive code to parse a URL and create a channel connected to it into `tvix_castore::channel::from_url`. Part of b/308 Change-Id: Idd342cd71cad5e78a9b258b38c1b227993e75310 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9707 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster --- tvix/castore/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tvix/castore/src/lib.rs') diff --git a/tvix/castore/src/lib.rs b/tvix/castore/src/lib.rs index d51022428e5b..5a031aec7686 100644 --- a/tvix/castore/src/lib.rs +++ b/tvix/castore/src/lib.rs @@ -2,6 +2,7 @@ mod digests; mod errors; pub mod blobservice; +pub mod channel; pub mod directoryservice; pub mod fixtures; pub mod import; -- cgit 1.4.1