mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-02-23 03:17:25 +08:00
21 lines
370 B
Go
21 lines
370 B
Go
package utils
|
|
|
|
type ClientConfig struct {
|
|
DataDir string `yaml:"dataDir"`
|
|
SymlinkPath string `yaml:"symlinkPath"`
|
|
SignatureCheck bool `yaml:"signatureCheck"`
|
|
}
|
|
|
|
type NodeConfig struct {
|
|
ClientConfig
|
|
DataDir string
|
|
User string
|
|
}
|
|
|
|
type ReleaseType string
|
|
|
|
const (
|
|
ReleaseTypeQClient ReleaseType = "qclient"
|
|
ReleaseTypeNode ReleaseType = "node"
|
|
)
|