summaryrefslogtreecommitdiff
path: root/internal/discovery/discovery_noembed.go
blob: dd5ecd09f743e207ba1acb791b5ce7da11c35e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +build !release

package discovery

// eServers are the embedded server list
// In this case this is empty because we do not embed during development
var eServers []byte

// eOrganizations are the embedded organizations
// In this case this is empty because we do not embed during development
var eOrganizations []byte

func init() {
	HasCache = false
}