From 9a6fc3475a00e595a4371296c4e92f477f7e94bd Mon Sep 17 00:00:00 2001 From: Rockingcool Date: Thu, 15 Aug 2024 12:42:50 -0500 Subject: [PATCH] Added comment to function --- config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config.go b/config.go index c6a1abf..5565098 100644 --- a/config.go +++ b/config.go @@ -17,6 +17,8 @@ import ( //go:embed config var storedConfigs embed.FS // Embed the folder containing config files +// runningOnWindows: At the moment this function isn't used. When Window support is added, +// it will be used to determine if the program is being run on Windows. func runningOnWindows() bool { return runtime.GOOS == "windows" }