From f07b947976e5e23531b871cf8484ad088d0a64a3 Mon Sep 17 00:00:00 2001 From: Pavel Karpy Date: Fri, 27 Oct 2023 17:03:43 +0300 Subject: [PATCH] fstree: Fix non-linux build Add missing import directive non-linux builds. Signed-off-by: Pavel Karpy --- .../blobstor/fstree/fstree_write_specific.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/local_object_storage/blobstor/fstree/fstree_write_specific.go b/pkg/local_object_storage/blobstor/fstree/fstree_write_specific.go index 496a5dc3cf..3950d94ab9 100644 --- a/pkg/local_object_storage/blobstor/fstree/fstree_write_specific.go +++ b/pkg/local_object_storage/blobstor/fstree/fstree_write_specific.go @@ -2,6 +2,10 @@ package fstree +import ( + "io/fs" +) + func newSpecificWriteData(_ string, _ fs.FileMode, _ bool) func(string, []byte) error { return nil }