add crud store/api service
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s

This commit is contained in:
2026-03-07 00:53:08 -06:00
parent 533571859f
commit 31225b51b2
9 changed files with 412 additions and 4 deletions

View File

@@ -1,2 +1,8 @@
// models are the data objects stored in the database. models defined here must match models defined in api/models
export interface User {
id: number;
name: string;
email: string
}