mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-18 16:07:31 -07:00
16 lines
240 B
TypeScript
16 lines
240 B
TypeScript
|
import define from '../define';
|
||
|
import endpoints from '../endpoints';
|
||
|
|
||
|
export const meta = {
|
||
|
requireCredential: false,
|
||
|
|
||
|
tags: ['meta'],
|
||
|
|
||
|
params: {
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default define(meta, async () => {
|
||
|
return endpoints.map(x => x.name);
|
||
|
});
|