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.
15 lines
284 B
15 lines
284 B
from flask import Flask
|
|
import bot_app.fulfillment.utility as util
|
|
import bot_app.fulfillment.controllers as controller
|
|
|
|
app = Flask(__name__)
|
|
|
|
app.config.from_object('config')
|
|
|
|
controller.init_app(app)
|
|
|
|
util.init_app(app)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return 'Service Working!!!'
|