Added amplify

This commit is contained in:
Lorenzo Iovino 2023-12-27 20:31:32 +01:00
parent a42c00d862
commit 6d03f25bcf
8 changed files with 10845 additions and 13 deletions

8
amplify/backend.ts Normal file
View file

@ -0,0 +1,8 @@
import { defineBackend } from '@aws-amplify/backend';
import { auth } from './auth/resource';
import { data } from './data/resource';
defineBackend({
auth,
data,
});