mirror of
https://github.com/fosrl/pangolin.git
synced 2025-07-13 15:35:00 +02:00
make fields in provider endpoint optional
This commit is contained in:
parent
30a3ceb2f3
commit
5750c89b92
4 changed files with 32 additions and 21 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue