mirror of https://github.com/portainer/portainer
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
import { queryKeys as containerQueryKeys } from './container';
|
|
import { queryKeys as rootQueryKeys } from './root';
|
|
|
|
export const queryKeys = {
|
|
...rootQueryKeys,
|
|
...containerQueryKeys,
|
|
};
|
|
|
|
export {
|
|
buildDockerSnapshotContainersUrl,
|
|
type ContainersQueryParams,
|
|
} from './container';
|
|
|
|
export { buildDockerSnapshotUrl } from './root';
|