Remove hard-coded directory path

This commit is contained in:
Oliver Davies 2025-09-29 22:34:14 +01:00
parent 06167c4b67
commit 569104f479

View file

@ -1,5 +1,7 @@
package lib
import "os"
func GetZetDir() string {
return "/home/opdavies/Documents/zet"
return os.Getenv("ZET_DIRECTORY")
}