aboutsummaryrefslogtreecommitdiff
path: root/rpc/middleware
diff options
context:
space:
mode:
Diffstat (limited to 'rpc/middleware')
-rw-r--r--rpc/middleware/logger.go4
-rw-r--r--rpc/middleware/validation.go4
2 files changed, 4 insertions, 4 deletions
diff --git a/rpc/middleware/logger.go b/rpc/middleware/logger.go
index 825e002..6f3e8ad 100644
--- a/rpc/middleware/logger.go
+++ b/rpc/middleware/logger.go
@@ -2,7 +2,7 @@
//
//Copyright (C) 2022 Alexander Kiryukhin <i@neonxp.dev>
//
-//This file is part of go.neonxp.ru/jsonrpc2 project.
+//This file is part of neonxp.ru/go/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
@@ -25,7 +25,7 @@ import (
"fmt"
"time"
- "go.neonxp.ru/jsonrpc2/rpc"
+ "neonxp.ru/go/jsonrpc2/rpc"
)
func Logger(logger rpc.Logger) rpc.Middleware {
diff --git a/rpc/middleware/validation.go b/rpc/middleware/validation.go
index efa6096..c18ce4f 100644
--- a/rpc/middleware/validation.go
+++ b/rpc/middleware/validation.go
@@ -2,7 +2,7 @@
//
//Copyright (C) 2022 Alexander Kiryukhin <i@neonxp.dev>
//
-//This file is part of go.neonxp.ru/jsonrpc2 project.
+//This file is part of neonxp.ru/go/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
@@ -27,7 +27,7 @@ import (
"github.com/qri-io/jsonschema"
- "go.neonxp.ru/jsonrpc2/rpc"
+ "neonxp.ru/go/jsonrpc2/rpc"
)
type ServiceSchema map[string]MethodSchema