aboutsummaryrefslogtreecommitdiffstats
path: root/qtip/api/__main__.py
blob: aa2941a7d4569ca1e5276b7ce30dea7bdb1d7332 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
##############################################################################
# Copyright (c) 2017 akhil.batra@research.iiit.ac.in and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

import connexion


def main():
    app = connexion.App(__name__, specification_dir='swagger/')
    app.add_api('swagger.yaml', base_path='/v1.0')
    app.run(host='0.0.0.0', port='5000')


if __name__ == '__main__':
    main()