mirror of
https://github.com/Dokploy/examples.git
synced 2026-06-15 20:25:24 +02:00
8 lines
118 B
TypeScript
8 lines
118 B
TypeScript
export type User = {
|
|
id: number
|
|
name: string
|
|
email: string
|
|
}
|
|
|
|
export const DEPLOY_URL = 'http://localhost:3000'
|