summaryrefslogblamecommitdiff
path: root/members.go
blob: 2886bed9b47b71a46be12dd8c19a8e52596b8f32 (plain) (tree)






















                                    
package main

import (
	"math/rand"
	"time"
)

func getRandomMember() string {
	rand.Seed(time.Now().Unix())
	team := []string{
		"<@U8UJT0UJX>",
		"<@UCF7JA5CZ>",
		"<@UC86HMG1G>",
		"<@UCFHM9G04>",
		"<@UC9GZ0C2J>",
	}

	n := rand.Int() % len(team)
	member := team[n]

	return member
}