alkocats/http-ts

View on GitHub
src/controller/decorator/http_method/HttpConnect.ts

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
import { HttpConnectAction } from '../../helper/http_method/HttpConnectAction';
import { assign } from './assign';

export function HttpConnect(path: string): Function {
    return assign(path, HttpConnectAction);
}