diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-16T10·27+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-01-20T15·39+0000 |
commit | 259faea2b229edd8f2e31d0903b5fd185036b4a4 (patch) | |
tree | 7048af93655472774ab93953cf7682cd07d19425 /tvix/cli/src/main.rs | |
parent | 7d0456fa0e6330d24f0234a51f8bec85f26686d3 (diff) |
feat(tvix/cli): add `errors` module with drv construction errors r/5709
These will be threaded through to eval through the new `TvixError` variant. Change-Id: Ia0d3f8710dcf26bb95015cd2a6a2b2911f06343f Reviewed-on: https://cl.tvl.fyi/c/depot/+/7842 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/cli/src/main.rs')
-rw-r--r-- | tvix/cli/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/cli/src/main.rs b/tvix/cli/src/main.rs index 242cece9ecd2..6757044750fe 100644 --- a/tvix/cli/src/main.rs +++ b/tvix/cli/src/main.rs @@ -1,3 +1,4 @@ +mod errors; mod known_paths; mod nix_compat; mod refscan; |