diff --git a/server/nest/src/app.service.ts b/server/nest/src/app.service.ts index 8dad406..6af0e16 100644 --- a/server/nest/src/app.service.ts +++ b/server/nest/src/app.service.ts @@ -3,6 +3,6 @@ import { Injectable } from '@nestjs/common'; @Injectable() export class AppService { getHello(): string { - return 'Catchy Tape 📼'; + return 'Catchy Tape!'; } } diff --git a/server/spring/src/main/java/catchytape/spring/HelloCatchyTape.java b/server/spring/src/main/java/catchytape/spring/HelloCatchyTape.java index 6978d9c..a9262f7 100644 --- a/server/spring/src/main/java/catchytape/spring/HelloCatchyTape.java +++ b/server/spring/src/main/java/catchytape/spring/HelloCatchyTape.java @@ -7,6 +7,6 @@ public class HelloCatchyTape { @GetMapping("/test") public String test() { - return "hello this is catchy-tape 📼"; + return "hello this is catchy-tape!"; } }