mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-03-31 07:33:27 +00:00
✨ feat: initial prototype
This commit is contained in:
15
packages/db/src/models/reverse-proxy.ts
Normal file
15
packages/db/src/models/reverse-proxy.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import type {
|
||||
CustomEnvironmentVariable,
|
||||
Prisma,
|
||||
ReverseProxyServer as PrismaReverseProxyServer,
|
||||
} from "../generated/prisma";
|
||||
|
||||
export type ReverseProxyWithEnvVars = Prisma.ReverseProxyServerGetPayload<{
|
||||
include: { env_variables: true };
|
||||
}>;
|
||||
|
||||
export type ReverseProxyCreateInput = Prisma.ReverseProxyServerCreateInput;
|
||||
|
||||
export type ReverseProxyUpdateInput = Prisma.ReverseProxyServerUpdateInput;
|
||||
|
||||
export type ReverseProxyServer = PrismaReverseProxyServer;
|
||||
Reference in New Issue
Block a user