mirror of
https://github.com/He4eT/simple-spaceapi.git
synced 2026-05-04 17:37:24 +00:00
12 lines
175 B
TypeScript
12 lines
175 B
TypeScript
export default {
|
|
routes: [
|
|
{
|
|
method: 'GET',
|
|
path: '/spaceapi',
|
|
handler: 'spaceapi.index',
|
|
config: {
|
|
auth: false,
|
|
},
|
|
},
|
|
],
|
|
};
|