14 lines
185 B
Python
14 lines
185 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (c) 2019. Tobias Kurze
|
|
from backend import app
|
|
|
|
|
|
def main():
|
|
app.run(debug=True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|