This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: "2.0" | |
info: | |
description: "" | |
version: "1.0.0" | |
title: "Foo API" | |
host: "localhost:8080" | |
basePath: "/v0" | |
paths: | |
/train: | |
post: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
from __future__ import absolute_import | |
from datetime import date, datetime # noqa: F401 | |
from typing import List, Dict # noqa: F401 | |
from swagger_server.models.base_model_ import Model | |
from swagger_server import util |