A brand new welcome page (installer)

This commit is contained in:
2025-11-25 15:16:57 +08:00
parent 3c6f8714d2
commit 630d1d2f07
18 changed files with 332 additions and 20 deletions

View File

@@ -3,9 +3,10 @@ package service
// Config represents the full configuration structure
type Config struct {
Server struct {
Host string `json:"host"`
Port int `json:"port"`
Tls struct {
Host string `json:"host"`
Port int `json:"port"`
ShowServerVersion bool `json:"show_server_version"`
Tls struct {
Enabled bool `json:"enabled"`
Cert string `json:"cert_file"`
Key string `json:"key_file"`

View File

@@ -1,5 +1,5 @@
package service
func GetVersion() string {
return "0.1.0 dev 2025-11-22"
return "v0.1.0 dev 2025-11-24"
}