Add TypeORM DB and Resources (#2)

Co-authored-by: Joe Arndt <jmarndt@users.noreply.github.com>
Reviewed-on: #2
This commit is contained in:
Joe 2026-02-09 00:10:26 +00:00
parent 746adcd2fd
commit c6434de89d
64 changed files with 2916 additions and 360 deletions

View file

@ -0,0 +1,10 @@
import { Column, Entity, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class Merchant {
@PrimaryGeneratedColumn('uuid')
id: string;
@Column()
name: string;
}