diff options
author | Ben Morrison <ben@gbmor.dev> | 2020-06-20 02:27:31 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2020-06-20 02:27:31 -0400 |
commit | 538e305925b9b04102ef0a4fb7cca19a6c116142 (patch) | |
tree | 8e68b426c40c3151f39da1be874d2938f31ab5f9 /svc/leveldb.go | |
parent | 0a69c582ec8b88b1d3af70ef43c3eeb1b99f973d (diff) | |
download | getwtxt-538e305925b9b04102ef0a4fb7cca19a6c116142.tar.gz |
updating module to live at sourcehut
Also moving the 'registry' library into this repo, rather than maintaining them separately. It will still be decoupled, just live in this repository.
Diffstat (limited to 'svc/leveldb.go')
-rw-r--r-- | svc/leveldb.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svc/leveldb.go b/svc/leveldb.go index 16751ce..5fb4a45 100644 --- a/svc/leveldb.go +++ b/svc/leveldb.go @@ -17,14 +17,14 @@ You should have received a copy of the GNU General Public License along with Getwtxt. If not, see <https://www.gnu.org/licenses/>. */ -package svc // import "github.com/getwtxt/getwtxt/svc" +package svc // import "git.sr.ht/~gbmor/getwtxt/svc" import ( "net" "strings" "time" - "github.com/getwtxt/registry" + "git.sr.ht/~gbmor/getwtxt/registry" "github.com/syndtr/goleveldb/leveldb" ) |