feat: ent ORM, admin UI, client auth, Fyne GUI, Windows/MSI packaging

This commit is contained in:
kannn
2026-05-29 08:58:22 +00:00
Unverified
parent 8563a5fc74
commit a0a42a4966
81 changed files with 17144 additions and 89 deletions
+6 -1
View File
@@ -78,8 +78,13 @@ type ClientCommonConfig struct {
// Include other config files for proxies.
IncludeConfigFiles []string `json:"includes,omitempty"`
// Store config enables the built-in store source (not configurable via sources list).
// Store config enables the built-in store source.
Store StoreConfig `json:"store,omitempty"`
// ConfigURL fetches the full client configuration from a remote URL.
// When set, frpc fetches this URL on startup and periodically thereafter,
// automatically reloading when the configuration changes.
ConfigURL string `json:"configURL,omitempty"`
}
func (c *ClientCommonConfig) Complete() error {