2024-11-28 15:20:29 +08:00
|
|
|
package typed
|
|
|
|
|
2024-12-05 01:00:07 +08:00
|
|
|
type CoreConfigInfo struct {
|
2024-11-29 11:43:39 +08:00
|
|
|
CoreName string `json:"core_name"`
|
|
|
|
ProtocolAddr string `json:"protocol_addr"`
|
2024-12-07 17:16:44 +08:00
|
|
|
Token string `json:"token"`
|
2024-11-29 11:43:39 +08:00
|
|
|
WebUIPort uint16 `json:"webui_port"`
|
|
|
|
PasswordHash string `json:"password_hash"`
|
|
|
|
ServiceName string `json:"service_name"`
|
2024-11-28 19:45:03 +08:00
|
|
|
}
|