Models
======

The model layer is a connector between databases, external 3rd party apis and
our application. It means whenever you want to get data from a database, you
will call the corresponding model. In addition to this responsibility, the
models are also in charge of validating the data – we want to make sure the data
that comes in (for any type of operation) is always in a clean state.


.. toctree::
   :titlesonly:

   models/api-token
   models/session
