UNPKG

@dxdeveloperexperience/hygie

Version:

Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.

12 lines (9 loc) 207 B
import { HttpStatus } from '@nestjs/common'; export class HttpResponse { status: HttpStatus; message: string; constructor(s: HttpStatus, m: string) { this.status = s; this.message = m; } }