mirror of https://github.com/portainer/portainer
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
|
import { EnvironmentId } from '@/portainer/environments/types';
|
||
|
|
||
|
export const queryKeys = {
|
||
|
root: (environmentId: EnvironmentId) => ['docker', environmentId] as const,
|
||
|
};
|