10 lines
223 B
Python
10 lines
223 B
Python
from src.controller import BaseController
|
|
from model import Section
|
|
from src.database import db_session
|
|
class SecController(BaseController):
|
|
__myclass__=Section
|
|
__jsonid__='section'
|
|
|
|
controller=SecController()
|
|
|