Create @workspace/schema package with Project and Task table definitions, Drizzle relations, Valibot validation schemas (select/insert/update), and wire as workspace dependency in API and Web apps.
9 lines
142 B
TypeScript
9 lines
142 B
TypeScript
import { Injectable } from "@nestjs/common";
|
|
|
|
@Injectable()
|
|
export class AppService {
|
|
getHello(): string {
|
|
return "Hello World!";
|
|
}
|
|
}
|