first commit

This commit is contained in:
2026-04-17 11:56:39 +07:00
commit 2a79993f43
506 changed files with 342249 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
package config
type Config struct {
CA CA
Mapping map[string]string
WellKnownDir string
NFS NFSConfig
}
type CA struct {
CacheDir string
Email string
}
type NFSConfig struct {
Enabled bool `toml:"enabled"`
Server string `toml:"server"`
ExportPath string `toml:"export_path"`
MountPoint string `toml:"mount_point"`
Options string `toml:"options"`
}