9 lines
192 B
Python
9 lines
192 B
Python
|
|
from app.models import MapSourceModel
|
||
|
|
|
||
|
|
from . import BaseRepository
|
||
|
|
|
||
|
|
|
||
|
|
class MapSourceRepository(BaseRepository[MapSourceModel]):
|
||
|
|
def __init__(self, model):
|
||
|
|
super().__init__(model)
|