Initial commit

This commit is contained in:
2026-06-09 19:29:34 +02:00
commit 2d8602609c
5 changed files with 158 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
version: "1.0"
project: "legacy-finance-api"
endpoints:
- path: "/accounts/{id}"
method: "GET"
cobol_source: "src/fetch_account.cbl"
procedure: "GET_ACCOUNT_DATA"
arguments:
- name: "id"
type: "PIC X(10)"
source: "path"
response:
- name: "balance"
type: "PIC 9(7)V99"
- name: "status"
type: "PIC X(2)"