diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-04-08 12:13:50 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-04-08 12:13:50 +0200 |
commit | c5b10e28b358308d8349b940af09f64368172f2e (patch) | |
tree | 47a79c82c04ea7604c03ff128c3b096876f5c9eb /relay/session.go | |
parent | f75ec8f8f5b3d0d75f752b26df1088e9d42d2634 (diff) |
Remove relay package
Diffstat (limited to 'relay/session.go')
-rw-r--r-- | relay/session.go | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/relay/session.go b/relay/session.go deleted file mode 100644 index a2bc50e..0000000 --- a/relay/session.go +++ /dev/null @@ -1,23 +0,0 @@ -package relay - -import ( - "math/rand" -) - -var adjectives = []string{ - "adamant", "adept", "adventurous", "arcadian", "auspicious", - "awesome", "blossoming", "brave", "charming", "chatty", - "circular", "considerate", "cubic", "curious", "delighted", -} - -var nouns = []string{ - "aardvark", "accordion", "apple", "apricot", "bee", - "brachiosaur", "cactus", "capsicum", "clarinet", "cowbell", - "crab", "cuckoo", "cymbal", "diplodocus", "donkey", -} - -func NewSession() string { - noun := nouns[rand.Intn(len(nouns))] - adjective := adjectives[rand.Intn(len(adjectives))] - return noun + "-" + adjective -} |