mirror of
https://github.com/A-Minos/nonebot-plugin-tetris-stats.git
synced 2026-03-05 05:36:54 +08:00
* ⬆️ auto update by pre-commit hooks updates: - [github.com/astral-sh/ruff-pre-commit: v0.7.3 → v0.8.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.3...v0.8.1) * 🚨 auto fix by pre-commit hooks * 🚨 fix ruff --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: shoucandanghehe <wallfjjd@gmail.com>
16 lines
371 B
Python
16 lines
371 B
Python
from re import compile # noqa: A004
|
|
from typing import Literal
|
|
|
|
from yarl import URL
|
|
|
|
GAME_TYPE: Literal['TOS'] = 'TOS'
|
|
|
|
BASE_URL = {
|
|
URL('https://teatube.cn:8888/'),
|
|
URL('http://cafuuchino1.studio26f.org:19970'),
|
|
}
|
|
|
|
USER_NAME = compile(
|
|
r'^(?!\.)(?!com[0-9]$)(?!con$)(?!lpt[0-9]$)(?!nul$)(?!prn$)[^\-][^\+][^\|\*\?\\\s\!:<>/$"]*[^\.\|\*\?\\\s\!:<>/$"]+$'
|
|
)
|