mirror of
https://github.com/jlengrand/twitterboard.git
synced 2026-03-10 08:51:22 +00:00
11 lines
186 B
Python
11 lines
186 B
Python
"""
|
|
Top level application that will start the streamer and the API.
|
|
"""
|
|
|
|
from flask_app import app
|
|
|
|
class Twiderboard():
|
|
def __init__(self):
|
|
app.run()
|
|
print "coucou"
|