mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
8 lines
193 B
JavaScript
8 lines
193 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
window.onload = () => {
|
||
|
const data = JSON.parse(document.getElementById('swagger-data').innerText);
|
||
|
|
||
|
Redoc.init(data.spec, {}, document.getElementById('swagger-ui'));
|
||
|
};
|