mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
14 lines
325 B
Python
14 lines
325 B
Python
from re import compile
|
|
from typing import Literal
|
|
|
|
GAME_TYPE: Literal['TOS'] = 'TOS'
|
|
|
|
BASE_URL = {
|
|
'https://teatube.cn:8888/',
|
|
'http://cafuuchino1.studio26f.org:19970',
|
|
}
|
|
|
|
USER_NAME = compile(
|
|
r'^(?!\.)(?!com[0-9]$)(?!con$)(?!lpt[0-9]$)(?!nul$)(?!prn$)[^\-][^\+][^\|\*\?\\\s\!:<>/$"]*[^\.\|\*\?\\\s\!:<>/$"]+$'
|
|
)
|