From 324202a50e440cac36a756d6a2628ebadd2f8d70 Mon Sep 17 00:00:00 2001 From: Jeroen Wijenbergh Date: Mon, 21 Mar 2022 17:16:28 +0100 Subject: Update python and add basic config support --- src/server.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server.go') diff --git a/src/server.go b/src/server.go index 6f809c6..627843f 100644 --- a/src/server.go +++ b/src/server.go @@ -5,9 +5,9 @@ import ( ) type Server struct { - BaseURL string - Endpoints *ServerEndpoints - OAuth *OAuth + BaseURL string `json:"base_url"` + Endpoints *ServerEndpoints `json:"endpoints"` + OAuth *OAuth `json:"oauth"` } type ServerEndpointList struct { -- cgit v1.2.3