"""Handlers package. Requests are redirected to handlers, which are responsible for getting information from the URL and passing it down to the logic layer. The way each layer talks to each other is through: - Response objects which defines the type status of the data and the data itself - typed objects or null values. Please note: the Orchard uses the term handlers over views as convention for clarity See: owsresponse for more details. """ # Import all handler modules to register their routes with the Flask app from account.handlers import applications # noqa from account.handlers import common # noqa from account.handlers import company # noqa from account.handlers import parent_company # noqa from account.handlers import lookups # noqa from account.handlers import subaccount # noqa from account.handlers import vendor # noqa