mirror of
https://github.com/KimigaiiWuyi/GenshinUID.git
synced 2025-06-03 05:59:51 +08:00
10 lines
176 B
Python
10 lines
176 B
Python
import sqlite3
|
|
|
|
import sqlalchemy.pool as pool # type: ignore
|
|
|
|
gsuid_pool = pool.QueuePool(
|
|
lambda: sqlite3.connect('ID_DATA.db'),
|
|
max_overflow=10,
|
|
pool_size=5,
|
|
)
|