refactor(tvix/nar-bridge): rename writer package to exporter

Change-Id: I7cf6a3ed0dca4c450fadd9228dc0154ad6254f51
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9530
Tested-by: BuildkiteCI
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Autosubmit: flokli <flokli@flokli.de>
This commit is contained in:
Florian Klink 2023-10-03 14:29:24 +03:00 committed by flokli
parent 49b427d773
commit d3c44ab03d
4 changed files with 11 additions and 11 deletions

View file

@ -13,7 +13,7 @@ import (
"sync"
castorev1pb "code.tvl.fyi/tvix/castore/protos"
"code.tvl.fyi/tvix/nar-bridge/pkg/writer"
"code.tvl.fyi/tvix/nar-bridge/pkg/exporter"
storev1pb "code.tvl.fyi/tvix/store/protos"
"github.com/go-chi/chi/v5"
nixhash "github.com/nix-community/go-nix/pkg/hash"
@ -94,7 +94,7 @@ func renderNar(
}
// render the NAR file
err := writer.Export(
err := exporter.Export(
w,
pathInfo,
func(directoryDigest []byte) (*castorev1pb.Directory, error) {