Skip to content

Commit

Permalink
feat: annotate code.
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyyuan committed Aug 22, 2023
1 parent 2361416 commit 5cdfb41
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/app.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ export class AppController {
};
}

@Get('/eips/update')
@ApiOperation({ description: 'Updata Eips.' })
async updateAllEips() {
const result = await this.appService.updateEips();
return { data: result };
}
// @Get('/eips/update')
// @ApiOperation({ description: 'Updata Eips.' })
// async updateAllEips() {
// const result = await this.appService.updateEips();
// return { data: result };
// }

@Post('/email/subscribe')
@ApiOperation({ description: 'Subscribe email.' })
Expand Down Expand Up @@ -124,11 +124,11 @@ export class AppController {
return { data: result };
}

@Post('/email/ping')
async pingEMail() {
const result = await this.appService.pingEMailService();
return result;
}
// @Post('/email/ping')
// async pingEMail() {
// const result = await this.appService.pingEMailService();
// return result;
// }

// @Post('/email/send')
// async sendEEmail() {
Expand Down

0 comments on commit 5cdfb41

Please sign in to comment.