Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

1.2KB

{# doc.0: URL; doc.1: Documentation; doc.2: Methods; doc.3: Params; #}

# Project Documentation

This page is automatically generated. Sections are organized like so:

    * METHOD ROUTE PARAMETERS
      DOCSTRING

`METHOD` is usually either `GET` or `POST`, but could be any of the
[HTTP Methods](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods).

The `ROUTE` is the `URI` endpoint on the application, e.g. `/builder`.

Each `ROUTE` has `PARAMETERS`. Currently, the parameters are parsed by
hand. As the application matures, the parameters will come more into
play.

The `DOCSTRING` is written by me, the developer, and is intended to
provide context on the purpose of the route.

The API follows a basic pattern:

    GET /<base-page>

This will display the main page for the item `<base-page>`.

    DELETE /<base-page>
    PATCH /<base-page>
    POST /<base-page>

If `<base-page>` may have an operation done on it (create,
retrieve, update, delete some values), there will be a matching method
for `DELETE`, `PATCH`, `POST`, etc.

# API Index
{% for doc in docs %}## {{ doc.2 }} {{ doc.0 }} {{ doc.3 }}
{{ doc.1 }}

{% endfor %}