tickets_plus.api
API for tickets_plus app.
This module provides an endpoint for delivery of tickets in a JSON format. It's to be used as an integration point for the main tickets' app.
Typical usage example:
from tickets_plus.api import handlers from tickets_plus.api import routes ...
1"""API for tickets_plus app. 2 3This module provides an endpoint for delivery of tickets in a JSON format. 4It's to be used as an integration point for the main tickets' app. 5 6Typical usage example: 7 ```py 8 from tickets_plus.api import handlers 9 from tickets_plus.api import routes 10 ... 11 ``` 12""" 13# License: EPL-2.0 14# SPDX-License-Identifier: EPL-2.0 15# Copyright (c) 2021-present The Tickets+ Contributors 16# This Source Code may also be made available under the following 17# Secondary Licenses when the conditions for such availability set forth 18# in the Eclipse Public License, v. 2.0 are satisfied: GPL-3.0-only OR 19# If later approved by the Initial Contributor, GPL-3.0-or-later.