package logic import "fmt" func GetStorageLocation() string { fmt.Print("Enter storage location: ") var response string fmt.Scan(&response) return response }