diff options
author | Ben Morrison <ben@gbmor.dev> | 2019-05-14 02:55:40 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2019-05-14 02:55:40 -0400 |
commit | a8ba50b53f45e06af03f5ef98e759539394a3c0c (patch) | |
tree | a5bfb512d6fcd208e2d050d9f06406e48d9c9185 | |
parent | 7728f92e4f4b00d617ece97d9c6a88125821d874 (diff) | |
download | getwtxt-a8ba50b53f45e06af03f5ef98e759539394a3c0c.tar.gz |
package cache renamed to package registry
-rw-r--r-- | registry/index.go (renamed from cache/index.go) | 2 | ||||
-rw-r--r-- | registry/types.go (renamed from cache/types.go) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cache/index.go b/registry/index.go index fa9031f..85277fc 100644 --- a/cache/index.go +++ b/registry/index.go @@ -1,4 +1,4 @@ -package cache +package registry import ( "log" diff --git a/cache/types.go b/registry/types.go index 2962ab4..d3e421a 100644 --- a/cache/types.go +++ b/registry/types.go @@ -1,4 +1,4 @@ -package cache +package registry import ( "sync" |