alkocats/http-ts

View on GitHub
src/controller/helper/Action.ts

Summary

Maintainability
A
0 mins
Test Coverage
D
66%
export abstract class Action {
    public method: string;

    constructor(method: string) {
        this.method = method;
    }
}