ryu-js / settingOptions.js
randydev's picture
Update settingOptions.js
8d618e3 verified
raw
history blame contribute delete
871 Bytes
const defaultDes = `
Free API by @xtdevs
This API grants you a specific set of rights and permissions for accessing and utilizing its data and services.
These rights are defined by its specifications and may be subject to specific terms and conditions.
`;
const swaggerOptions = {
definition: {
openapi: '3.0.0',
info: {
title: 'AkenoXJs',
version: '3.2.4',
description: defaultDes,
contact: {
name: "RandyDev",
url: "",
email: ""
},
license: {
name: "MIT LICENSE",
url: "https://github.com/xtsea/x-api-js/blob/main/LICENSE"
}
},
servers: [
{
url: '',
description: 'url'
}
],
tags: [
{ name: "AI" }
]
},
apis: [
"./routes/*.js",
"./plugins/*.js",
"./routes/*.route.js"
]
};
export { swaggerOptions };