mirror of
https://github.com/Dokploy/examples
synced 2025-06-26 18:15:52 +00: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'
|