X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d3a6d626ab4534865a14e8a34295a65e92036f37..b20770d7e5a4ba0a974a7b98fce87b81aead95d9:/services/ws/config.go diff --git a/services/ws/config.go b/services/ws/config.go index e2d69d0c68..0faa863d82 100644 --- a/services/ws/config.go +++ b/services/ws/config.go @@ -6,7 +6,7 @@ import ( "git.curoverse.com/arvados.git/sdk/go/arvados" ) -type Config struct { +type wsConfig struct { Client arvados.Client Postgres pgConfig Listen string @@ -18,8 +18,8 @@ type Config struct { ServerEventQueue int } -func DefaultConfig() Config { - return Config{ +func defaultConfig() wsConfig { + return wsConfig{ Client: arvados.Client{ APIHost: "localhost:443", },