mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-02-26 08:25:24 +00:00
12 lines
369 B
Python
12 lines
369 B
Python
"""APIs for dealing with process groups, process models, and process instances."""
|
|
from flask import make_response
|
|
from flask.wrappers import Response
|
|
|
|
from spiffworkflow_backend.models.process_instance import ProcessInstanceModel
|
|
|
|
|
|
def status() -> Response:
|
|
"""Status."""
|
|
ProcessInstanceModel.query.filter().first()
|
|
return make_response({"ok": True}, 200)
|