summaryrefslogtreecommitdiff
path: root/relay/session.go
diff options
context:
space:
mode:
Diffstat (limited to 'relay/session.go')
-rw-r--r--relay/session.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/relay/session.go b/relay/session.go
index 943c684..a2bc50e 100644
--- a/relay/session.go
+++ b/relay/session.go
@@ -16,7 +16,7 @@ var nouns = []string{
"crab", "cuckoo", "cymbal", "diplodocus", "donkey",
}
-func newSession() string {
+func NewSession() string {
noun := nouns[rand.Intn(len(nouns))]
adjective := adjectives[rand.Intn(len(adjectives))]
return noun + "-" + adjective