Added frontend and console

This commit is contained in:
Antonio de la Rosa 2015-12-09 04:57:51 +01:00
parent b5790e35f7
commit 642371ccef
3 changed files with 61 additions and 1 deletions

8
frontend/index.py Normal file
View file

@ -0,0 +1,8 @@
#!/usr/bin/python3
from paramecio.index import create_app, run_app
app=create_app()
if __name__ == "__main__":
run_app(app)

7
frontend/padmin.py Normal file
View file

@ -0,0 +1,7 @@
#!/usr/bin/python3
from paramecio.cromosoma.dbadmin import start
start()