10 lines
211 B
Python
10 lines
211 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
|
||
|
|
def build_dm_session_key(user_id: str) -> str:
|
||
|
|
return f"dm::{user_id}"
|
||
|
|
|
||
|
|
|
||
|
|
def build_group_session_key(conversation_id: str) -> str:
|
||
|
|
return f"group::{conversation_id}"
|