diff options
author | Julio Capote <jcapote@gmail.com> | 2023-01-05 04:02:41 +0000 |
---|---|---|
committer | Julio Capote <jcapote@gmail.com> | 2023-01-05 04:02:41 +0000 |
commit | a072a01daa776c53c2cf4ad1017430b772741d47 (patch) | |
tree | fe59067ca0f06d12b4c624aea981e1759f9920fb /registry | |
parent | 37d76d8f266f40801f4f7c3eaff3adaebb81ef31 (diff) | |
download | communique-a072a01daa776c53c2cf4ad1017430b772741d47.tar.gz |
doesnt need to be a point
Diffstat (limited to 'registry')
-rw-r--r-- | registry/registry.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/registry/registry.go b/registry/registry.go index 5376f80..4978645 100644 --- a/registry/registry.go +++ b/registry/registry.go @@ -36,7 +36,7 @@ type Registry struct { handlerMap map[string]Handler log *zap.SugaredLogger signer httpsig.Signer - mu *sync.Mutex + mu sync.Mutex } func NewRegistry(cfg config.Config, persister *models.Persister, log *zap.SugaredLogger) (*Registry, error) { |