UNPKG

@nelts/http

Version:

http for nelts worker

7 lines 255 B
import 'reflect-metadata'; import DecoratorNameSpace from '../namespace'; export default function Prefix(prefix?: string): ClassDecorator { return target => { Reflect.defineMetadata(DecoratorNameSpace.CONTROLLER_PREFIX, prefix || '/', target); } }