17 lines
352 B
Python
17 lines
352 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import connexion
|
||
|
|
||
|
from swagger_server import encoder
|
||
|
|
||
|
|
||
|
def main():
|
||
|
app = connexion.App(__name__, specification_dir='./swagger/')
|
||
|
app.app.json_encoder = encoder.JSONEncoder
|
||
|
app.add_api('swagger.yaml', arguments={'title': 'API Jo'}, pythonic_params=True)
|
||
|
app.run(port=8080)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|