From 624c5411645310e2afe7c620a7913d9c34a97a06 Mon Sep 17 00:00:00 2001 From: "jan.hajek@zerops.io" Date: Sun, 21 Jan 2024 23:10:03 +0100 Subject: [PATCH] fix constants --- src/constants/linux.go | 5 +++++ src/constants/windows.go | 1 + 2 files changed, 6 insertions(+) diff --git a/src/constants/linux.go b/src/constants/linux.go index 91a4db19..596eb93b 100644 --- a/src/constants/linux.go +++ b/src/constants/linux.go @@ -3,6 +3,11 @@ package constants +import ( + "os" + "path" +) + func getDataFilePaths() []pathReceiver { return []pathReceiver{ receiverWithPath(os.UserConfigDir, zeropsDir, cliDataFileName), diff --git a/src/constants/windows.go b/src/constants/windows.go index aa52bd16..604f5299 100644 --- a/src/constants/windows.go +++ b/src/constants/windows.go @@ -5,6 +5,7 @@ package constants import ( "os" + "path" ) func getDataFilePaths() []pathReceiver {