/
mcmare
/
RustAPI
Обзор
Документация
Войти
/
mcmare
/
RustAPI
Код
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
engine/tests/fixtures/valid/endpoints/orders.yaml
36 строк
636 B
mcmare
Add engine config models: connections, endpoints, field types, loader/validator
18 июл 2026, 16:14
18 июл 2026, 16:14
b8f5fda
Код
Авторство
О чём код?
endpoints: - method: POST path: /orders connection: main_db table: orders operation: create input: name: string price: number tags: array<string> output: id: uuid name: string price: number tags: array<string> created_at: datetime - method: GET path: /orders/{id} connection: main_db table: orders operation: read output: id: uuid name: string price: number - method: GET path: /orders connection: main_db table: orders operation: list output: id: uuid name: string price: number