mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
5 lines
162 B
Python
5 lines
162 B
Python
''' Base model for every database resource. '''
|
|
|
|
from sqlalchemy.ext.declarative import declarative_base
|
|
Base = declarative_base() # pylint: disable=invalid-name
|