mirror of
https://github.com/yusing/godoxy.git
synced 2025-05-19 20:32:35 +02:00

* use auto generated schemas * go version bump and dependencies upgrade * clarify some error messages --------- Co-authored-by: yusing <yusing@6uo.me>
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { IdleWatcherConfig } from "./providers/idlewatcher";
|
|
import { Route } from "./providers/routes";
|
|
|
|
//FIXME: fix this
|
|
export type DockerRoutes = {
|
|
[key: string]: Route & IdleWatcherConfig;
|
|
};
|