9 lines
155 B
Python
9 lines
155 B
Python
|
# coding: utf-8
|
||
|
from apiweb.model.feed import Registros
|
||
|
from apiweb.main import create_app
|
||
|
|
||
|
iapp = create_app()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
iapp.run()
|