add Order Entity and API Basics

This commit is contained in:
Marko
2022-06-22 17:02:10 +02:00
parent ea473db7bf
commit f35f8adceb
42 changed files with 3720 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
'use strict';
window.onload = () => {
const data = JSON.parse(document.getElementById('swagger-data').innerText);
Redoc.init(data.spec, {}, document.getElementById('swagger-ui'));
};