mirror of
https://github.com/zhom/donutbrowser.git
synced 2026-05-08 11:24:53 +02:00
9 lines
148 B
TypeScript
9 lines
148 B
TypeScript
import { Injectable } from "@nestjs/common";
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHello(): string {
|
|
return "Donut Sync Service";
|
|
}
|
|
}
|