mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-06-14 11:05:27 -04:00
7 lines
211 B
Django/Jinja
7 lines
211 B
Django/Jinja
{% for api in files.files %}
|
|
import { {{ api.camel }}API } from "./interfaces/{{ api.slug }}" {% endfor %}
|
|
|
|
export const api = {
|
|
{% for api in files.files %}
|
|
{{api.camel}}: {{api.camel}}API, {% endfor %}
|
|
} |