mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-25 13:51:17 +00:00
16 lines
546 B
HTML
16 lines
546 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Lemmy WebSocket API</title>
|
||
|
<!-- needed for adaptive design -->
|
||
|
<meta charset="utf-8"/>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script src="https://unpkg.com/@webcomponents/webcomponentsjs@2.5.0/webcomponents-bundle.js"></script>
|
||
|
<script src="https://unpkg.com/@asyncapi/web-component@0.19.0/lib/asyncapi-web-component.js" defer></script>
|
||
|
<asyncapi-component
|
||
|
schemaUrl="asyncapi.yaml"
|
||
|
cssImportPath="https://unpkg.com/@asyncapi/react-component@0.19.0/lib/styles/fiori.css">
|
||
|
</asyncapi-component>
|
||
|
</body>
|
||
|
</html>
|