mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-09 17:40:17 +00:00
6 lines
134 B
Python
6 lines
134 B
Python
from sqlalchemy import Engine, create_engine, inspect
|
|
|
|
|
|
def create_engine_in_memory():
|
|
return create_engine("sqlite:///:memory:")
|