mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-24 19:39:11 +00:00
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
import { RoleypolyHandler } from '@roleypoly/api/src/utils/context';
|
|
import { notImplemented } from '@roleypoly/api/src/utils/response';
|
|
|
|
/**
|
|
* Full import flow for legacy config.
|
|
*/
|
|
export const legacyImport: RoleypolyHandler = () => {
|
|
return notImplemented();
|
|
};
|