9757bf6377
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 <cbrewster@hey.com>
16 lines
240 B
Rust
16 lines
240 B
Rust
mod digests;
|
|
mod errors;
|
|
|
|
pub mod blobservice;
|
|
pub mod channel;
|
|
pub mod directoryservice;
|
|
pub mod fixtures;
|
|
pub mod import;
|
|
pub mod proto;
|
|
pub mod utils;
|
|
|
|
pub use digests::{B3Digest, B3_LEN};
|
|
pub use errors::Error;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|