mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
|
|
import { last } from 'lodash';
|
||
|
|
|
||
|
|
export const GRAPHITE_VERSIONS = ['0.9', '1.0', '1.1'];
|
||
|
|
|
||
|
|
export const DEFAULT_GRAPHITE_VERSION = last(GRAPHITE_VERSIONS)!;
|