Initial commit

This commit is contained in:
2025-04-07 21:07:25 +02:00
commit 0a20c6e237
17 changed files with 3780 additions and 0 deletions

View File

@ -0,0 +1,8 @@
import { users } from '../data/usersData';
import { userModel } from "../models/userModel";
export const userService = {
getAllUsers(): userModel[] {
return users;
}
};