import { Injectable } from '@nestjs/common';
// Nest.js Developer Bio
@Injectable()
class SoftwareEngineer {
name: string;
role: string;
technologies: string[];
constructor() {
this.name = "Nahuel Wagner";
this.role = "Full Stack Developer";
}
sayHi(): void {
console.log(
"Thanks for visiting! I hope you find my projects and skills with Nest.js interesting."
);
}
}
const me = new SoftwareEngineer();
me.sayHi();
💬 I’m open to collaborations and always eager to learn something new! Feel free to reach out on any of my social networks. 🚀