import connexion
import six

from swagger_server import util

a = list()

def books_get():
    return a

def books_post(book):
    a.append(book)
