aboutsummaryrefslogtreecommitdiff
path: root/http/server.go
diff options
context:
space:
mode:
authorAlexander Kiryukhin <a.kiryukhin@mail.ru>2022-03-24 18:37:38 +0300
committerAlexander Kiryukhin <a.kiryukhin@mail.ru>2022-03-24 18:37:38 +0300
commitd4708a3665e546eea57611b17441ad9b8c89e9a4 (patch)
treed85dd050b2eaf9f321b166ecfb020069de460e93 /http/server.go
parent4a8f9ef10ed6253901396bd6cd3554af05cf0d73 (diff)
Changed package name to `go.neonxp.dev/jsonrpc2`
Diffstat (limited to 'http/server.go')
-rw-r--r--http/server.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/server.go b/http/server.go
index cbcb89e..9fae0a0 100644
--- a/http/server.go
+++ b/http/server.go
@@ -2,7 +2,7 @@
//
//Copyright (C) 2022 Alexander Kiryukhin <i@neonxp.dev>
//
-//This file is part of github.com/neonxp/jsonrpc2 project.
+//This file is part of go.neonxp.dev/jsonrpc2 project.
//
//This program is free software: you can redistribute it and/or modify
//it under the terms of the GNU General Public License as published by
@@ -23,7 +23,7 @@ import (
"bufio"
"net/http"
- "github.com/neonxp/jsonrpc2/rpc"
+ "go.neonxp.dev/jsonrpc2/rpc"
)
type Server struct {