File: database.go

package info (click to toggle)
mirrorbits 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 984 kB
  • sloc: sh: 675; makefile: 93
file content (13 lines) | stat: -rw-r--r-- 413 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (c) 2014-2019 Ludovic Fauvet
// Licensed under the MIT license

package core

const (
	// RedisMinimumVersion contains the minimum redis version required to run the application
	RedisMinimumVersion = "3.2.0"
	// DBVersion represents the current DB format version
	DBVersion = 2
	// DBVersionKey contains the global redis key containing the DB version format
	DBVersionKey = "MIRRORBITS_DB_VERSION"
)