mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
9 lines
173 B
Python
9 lines
173 B
Python
from re import compile
|
|
from typing import Literal
|
|
|
|
GAME_TYPE: Literal['TOP'] = 'TOP'
|
|
|
|
BASE_URL = 'http://tetrisonline.pl/top/'
|
|
|
|
USER_NAME = compile(r'^[a-zA-Z0-9_]{1,16}$')
|