feat: server

This commit is contained in:
grimhilt
2024-03-21 09:59:10 +01:00
commit fbd4f4b1f1
11 changed files with 1014 additions and 0 deletions

9
schemas/basic-schemas.js Normal file
View File

@@ -0,0 +1,9 @@
const emptySchema = {
type: 'object',
properties: {
},
required: [],
additionalProperties: false,
};
export { emptySchema };