eclipse/config.go.in

18 lines
454 B
Go
Raw Permalink Normal View History

2024-01-20 17:05:57 +00:00
// Copyright (C) 2024 Umorpha Systems
2024-01-18 05:49:09 +00:00
// SPDX-License-Identifier: AGPL-3.0-or-later
package source
import (
"embed"
)
2024-01-18 07:43:02 +00:00
const (
2024-01-19 21:02:27 +00:00
DefaultLeaderConfigFile = "@sysconfdir@/eclipse/leader.yml"
DefaultFollowerConfigFile = "@sysconfdir@/eclipse/follower.yml"
DefaultGitCacheDir = "@localstatedir@/cache/eclipse/gitcache.git"
2024-01-18 07:43:02 +00:00
)
2024-01-18 05:49:09 +00:00
2024-01-24 04:38:37 +00:00
//go:embed COPYING.txt Makefile go.mod go.sum source.go config.go.in cmd lib test @build/etc-sources@
2024-01-18 05:49:09 +00:00
var fs embed.FS