mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 09:38:18 +00:00
8 lines
190 B
Python
8 lines
190 B
Python
import logging
|
|
from django.db import models
|
|
|
|
class _BaseModel(models.Model):
|
|
logger = logging.getLogger(__name__)
|
|
class Meta:
|
|
abstract = True
|
|
app_label = 'spa' |