all repos — homestead @ 20dd619b8605660dac67fa435d711e5f22da3174

Code for my website

ensure reasonable ordering of declarations in source

Alan Pearce
commit

20dd619b8605660dac67fa435d711e5f22da3174

parent

6f41d182abaf1af16fd0cc697abf0f2e9ce54c5c

1 file changed, 2 insertions(+), 2 deletions(-)

changed files
M domain/identity/webfinger/service.godomain/identity/webfinger/service.go
@@ -21,6 +21,8 @@ providers []ResourceProvider
corsOrigin string } +type Option func(*Service) + var ( ErrMissingResourceParameter = ihttp.NewError( "Missing resource parameter",
@@ -32,8 +34,6 @@ http.StatusInternalServerError,
) ErrNotFound = ihttp.NewError("Resource not found", http.StatusNotFound) ) - -type Option func(*Service) func WithCORSOrigin(origin string) Option { return func(s *Service) {