first commit

This commit is contained in:
Rael Calitro
2024-03-27 17:14:09 +01:00
commit c58e016374
11 changed files with 5401 additions and 0 deletions

5
src/index.test.ts Normal file
View File

@@ -0,0 +1,5 @@
describe("Test", () => {
it("should pass", () => {
expect(true).toBe(true);
});
});

7
src/index.ts Normal file
View File

@@ -0,0 +1,7 @@
async function start() {
console.log("Application starts...");
console.log("Application ends...");
}
start();