dooey/app/app/services/invite_service.py
mohamad 240e54eec4 weeee💃
2025-03-27 08:13:54 +01:00

17 lines
475 B
Python

# app/services/invite_service.py
import random
ADJECTIVES = [
"happy", "bright", "blue", "swift", "gentle", "fancy", "warm", "lucky",
"brave", "calm", "eager", "jolly"
]
NOUNS = [
"panda", "tiger", "river", "forest", "sky", "mountain", "ocean", "falcon",
"eagle", "lion", "wolf", "bear"
]
def generate_invite_code() -> str:
"""Return a random code made up of an adjective and a noun."""
return f"{random.choice(ADJECTIVES)}-{random.choice(NOUNS)}"