package commands import ( "github.com/lyx0/nourybot/internal/common" ) func Coinflip() string { flip := common.GenerateRandomNumber(2) var reply string switch flip { case 0: reply = "Heads!" case 1: reply = "Tails!" default: reply = "Heads!" } return reply }