fix json attributes
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2023-09-25 11:17:56 +01:00
parent 25a86eef4a
commit 6b4f139e7f
Signed by: burble
GPG Key ID: E9B4156C1659C079

View File

@ -75,11 +75,11 @@ func (s *Server) handleConn(conn *net.TCPConn) {
////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////
type options struct { type options struct {
Port uint `json:port` Port uint `json:"port"`
Address string `json:address` Address string `json:"address"`
Registry string `json:registry` Registry string `json:"registry"`
Datapath string Datapath string
Header string `json:header` Header string `json:"header"`
} }
func parseFlags() options { func parseFlags() options {