From e51423c6c2925f41e8c8d6e1dcc8a12c837087fb Mon Sep 17 00:00:00 2001 From: Marco Nicola Date: Mon, 30 Oct 2023 19:37:40 +0100 Subject: [PATCH] Remove unused diskstoremode package --- pkg/tasks/diskstoremode/diskstoremode_unix.go | 7 ------- pkg/tasks/diskstoremode/diskstoremode_windows.go | 7 ------- 2 files changed, 14 deletions(-) delete mode 100644 pkg/tasks/diskstoremode/diskstoremode_unix.go delete mode 100644 pkg/tasks/diskstoremode/diskstoremode_windows.go diff --git a/pkg/tasks/diskstoremode/diskstoremode_unix.go b/pkg/tasks/diskstoremode/diskstoremode_unix.go deleted file mode 100644 index c323620..0000000 --- a/pkg/tasks/diskstoremode/diskstoremode_unix.go +++ /dev/null @@ -1,7 +0,0 @@ -//go:build !windows - -package diskstoremode - -import "github.com/nlpodyssey/spago/embeddings/store/diskstore" - -const DefaultDiskStoreMode = diskstore.ReadOnlyMode diff --git a/pkg/tasks/diskstoremode/diskstoremode_windows.go b/pkg/tasks/diskstoremode/diskstoremode_windows.go deleted file mode 100644 index 6222c38..0000000 --- a/pkg/tasks/diskstoremode/diskstoremode_windows.go +++ /dev/null @@ -1,7 +0,0 @@ -//go:build windows - -package diskstoremode - -import "github.com/nlpodyssey/spago/embeddings/store/diskstore" - -const DefaultDiskStoreMode = diskstore.ReadWriteMode