refactor: add missing path option

This commit is contained in:
Mauricio Siu
2025-02-15 13:35:25 -06:00
parent 2ddfc83f36
commit 23b59076b8

View File

@@ -12,7 +12,9 @@ export interface Schema {
projectName: string;
}
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName">;
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName"> & {
path?: string;
};
export interface Template {
envs?: string[];