15 lines
274 B
Python
15 lines
274 B
Python
__all__ = ["mention", "atmention", "normalize", "compare"]
|
|
|
|
# Name/nick related functions
|
|
|
|
def mention(name: str) -> str:
|
|
pass
|
|
|
|
def atmention(name: str) -> str:
|
|
pass
|
|
|
|
def normalize(name: str) -> str:
|
|
pass
|
|
|
|
def compare(name_a: str, name_b: str) -> bool:
|
|
pass
|