diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 14:30:55 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 14:30:55 +0100 |
| commit | bb760ad9036b586fd4f07b96623e8421e1dccaf0 (patch) | |
| tree | c06fa76d5fe89dadb3e7ad6d4f2c1d5fe6f94912 /internal/server/instituteaccess.go | |
| parent | 0bfb35520d7e138e6219e550187e0b55bc8a29ac (diff) | |
Formatting: Run golines
Diffstat (limited to 'internal/server/instituteaccess.go')
| -rw-r--r-- | internal/server/instituteaccess.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/server/instituteaccess.go b/internal/server/instituteaccess.go index f76323c..9b6f735 100644 --- a/internal/server/instituteaccess.go +++ b/internal/server/instituteaccess.go @@ -46,7 +46,10 @@ func (servers *Servers) GetInstituteAccess(url string) (*InstituteAccessServer, if server, ok := servers.InstituteServers.Map[url]; ok { return server, nil } - return nil, types.NewWrappedError("failed to get institute access server", fmt.Errorf("no institute access server with URL: %s", url)) + return nil, types.NewWrappedError( + "failed to get institute access server", + fmt.Errorf("no institute access server with URL: %s", url), + ) } func (servers *Servers) RemoveInstituteAccess(url string) { |
