mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-21 06:09:40 +02:00
7 lines
178 B
Text
7 lines
178 B
Text
|
{% for api in files.files %}
|
||
|
import { {{ api }}API } from "./{{api}}.js" {% endfor %}
|
||
|
|
||
|
export const api = {
|
||
|
{% for api in files.files %}
|
||
|
{{api}}: {{api}}API, {% endfor %}
|
||
|
}
|