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: