14 lines
303 B
Go
14 lines
303 B
Go
|
// Copyright (C) 2023-2024 Umorpha Systems
|
||
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
package source
|
||
|
|
||
|
import (
|
||
|
"embed"
|
||
|
)
|
||
|
|
||
|
const DefaultConfigFile = "@sysconfdir@/eclipse/eclipse.yml"
|
||
|
|
||
|
//go:embed COPYING.txt Makefile go.mod go.sum source.go config.go.in cmd lib @build/etc-sources@
|
||
|
var fs embed.FS
|