mirror of
https://github.com/grafana/grafana.git
synced 2025-08-01 18:42:15 +08:00
14 lines
331 B
TypeScript
14 lines
331 B
TypeScript
import { BASE_URL } from './api';
|
|
import { getIdentityDisplayList } from './testdata/identityDisplayList';
|
|
import { getTestQueryList } from './testdata/testQueryList';
|
|
|
|
export const mockData = {
|
|
all: {
|
|
url: BASE_URL,
|
|
response: getTestQueryList(),
|
|
},
|
|
identityDisplay: {
|
|
response: getIdentityDisplayList(),
|
|
},
|
|
};
|