@brewww/authentication-service
Version:
Authenticator service for Brew projects.
14 lines • 415 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OkResponse = void 0;
const openapi = require("@nestjs/swagger");
class OkResponse {
constructor() {
this.result = "OK";
}
static _OPENAPI_METADATA_FACTORY() {
return { result: { required: true, type: () => String } };
}
}
exports.OkResponse = OkResponse;
//# sourceMappingURL=ok-response.dto.js.map