From 9f096d41076dffe44533d16873d2e55c0e00a3d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn=20Friedrich=20Dreyer?= Date: Mon, 8 Sep 2025 17:25:07 +0200 Subject: [PATCH] update comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jörn Friedrich Dreyer --- pkg/runner/factory.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/runner/factory.go b/pkg/runner/factory.go index 9ad599a876..95d9c74559 100644 --- a/pkg/runner/factory.go +++ b/pkg/runner/factory.go @@ -14,7 +14,7 @@ import ( // NewGoMicroGrpcServerRunner creates a new runner based on the provided go-micro's // GRPC service. The service is expected to be created via -// "github.com/owncloud/ocis/v2/ocis-pkg/service/grpc".NewService(...) function +// "github.com/opencloud-eu/opencloud/pkg/service/grpc".NewService(...) function // // The runner will behave as described: // * The task is to start a server and listen for connections. If the server @@ -44,7 +44,7 @@ func NewGoMicroGrpcServerRunner(name string, server ogrpc.Service, opts ...Optio // NewGoMicroHttpServerRunner creates a new runner based on the provided go-micro's // HTTP service. The service is expected to be created via -// "github.com/owncloud/ocis/v2/ocis-pkg/service/http".NewService(...) function +// "github.com/opencloud-eu/opencloud/pkg/service/http".NewService(...) function // // The runner will behave as described: // * The task is to start a server and listen for connections. If the server @@ -74,7 +74,7 @@ func NewGoMicroHttpServerRunner(name string, server ohttp.Service, opts ...Optio // NewGolangHttpServerRunner creates a new runner based on the provided HTTP server. // The HTTP server is expected to be created via -// "github.com/owncloud/ocis/v2/ocis-pkg/service/debug".NewService(...) function +// "github.com/opencloud-eu/opencloud/pkg/service/debug".NewService(...) function // and it's expected to be a regular golang HTTP server // // The runner will behave as described: