mirror of
https://github.com/fosrl/pangolin.git
synced 2026-03-09 12:16:36 +00:00
make fields in provider endpoint optional
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
export type DynamicTraefikConfig = {
|
||||
http: Http;
|
||||
http?: Http;
|
||||
};
|
||||
|
||||
export type Http = {
|
||||
routers: Routers;
|
||||
services: Services;
|
||||
middlewares: Middlewares;
|
||||
routers?: Routers;
|
||||
services?: Services;
|
||||
middlewares?: Middlewares;
|
||||
};
|
||||
|
||||
export type Routers = {
|
||||
|
||||
Reference in New Issue
Block a user