You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
235 B
12 lines
235 B
from flask import Flask
|
|
from bot_app.fulfillment.controllers import fulfillment
|
|
|
|
app = Flask(__name__)
|
|
|
|
app.config.from_object('config')
|
|
|
|
app.register_blueprint(fulfillment)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return 'Service Working!!!'
|