mirror of
https://github.com/jlengrand/twitterboard.git
synced 2026-03-10 08:51:22 +00:00
17 lines
219 B
Python
17 lines
219 B
Python
import time
|
|
from multiprocessing import Process
|
|
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return "Hi there!!!"
|
|
|
|
|
|
def run():
|
|
app.run()
|
|
|
|
if __name__ == '__main__':
|
|
app.run() |