alkocats/http-ts

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

Summary

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

export function HttpPost(path: string): Function {
    return assign(path, HttpPostAction);
}