CSI-ES-2324/Projs/PD1/internal/server/interface.go

16 lines
240 B
Go
Raw Normal View History

package server
import (
"bufio"
"fmt"
"os"
)
func AskServerPassword() string {
fmt.Println("Enter key store password")
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
// FIX: make sure this doesnt die
return scanner.Text()
}