TheMathemagicians/sevenkeys/logic/storage.go

13 lines
166 B
Go
Raw Normal View History

2024-05-30 13:32:04 +00:00
package logic
import "fmt"
func GetStorageLocation() string {
fmt.Print("Enter storage location: ")
var response string
fmt.Scan(&response)
return response
}