Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme: replace invalid links #94

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ English | [中文](README.zh_CN.md)
[![Go Report Card](https://goreportcard.com/badge/trpc.group/trpc-go/trpc-go)](https://goreportcard.com/report/trpc.group/trpc-go/trpc-go)
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-green.svg)](https://github.com/trpc-group/trpc-go/blob/main/LICENSE)
[![Releases](https://img.shields.io/github/release/trpc-group/trpc-go.svg?style=flat-square)](https://github.com/trpc-group/trpc-go/releases)
[![Docs](https://img.shields.io/badge/docs-latest-green)](https://trpc.group)
[![Docs](https://img.shields.io/badge/docs-latest-green)](https://trpc.group/docs/languages/go/)
[![Tests](https://github.com/trpc-group/trpc-go/actions/workflows/prc.yml/badge.svg)](https://github.com/trpc-group/trpc-go/actions/workflows/prc.yml)
[![Coverage](https://codecov.io/gh/trpc-group/trpc-go/branch/main/graph/badge.svg)](https://app.codecov.io/gh/trpc-group/trpc-go/tree/main)

Expand Down
2 changes: 1 addition & 1 deletion README.zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Go Report Card](https://goreportcard.com/badge/trpc.group/trpc-go/trpc-go)](https://goreportcard.com/report/trpc.group/trpc-go/trpc-go)
[![LICENSE](https://img.shields.io/badge/license-Apache--2.0-green.svg)](https://github.com/trpc-group/trpc-go/blob/main/LICENSE)
[![Releases](https://img.shields.io/github/release/trpc-group/trpc-go.svg?style=flat-square)](https://github.com/trpc-group/trpc-go/releases)
[![Docs](https://img.shields.io/badge/docs-latest-green)](https://trpc.group/zh/)
[![Docs](https://img.shields.io/badge/docs-latest-green)](https://trpc.group/zh/docs/languages/go/)
[![Tests](https://github.com/trpc-group/trpc-go/actions/workflows/prc.yml/badge.svg)](https://github.com/trpc-group/trpc-go/actions/workflows/prc.yml)
[![Coverage](https://codecov.io/gh/trpc-group/trpc-go/branch/main/graph/badge.svg)](https://app.codecov.io/gh/trpc-group/trpc-go/tree/main)

Expand Down
2 changes: 1 addition & 1 deletion examples/features/admin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,4 @@ test cmds%
The admin has already integrated the pprof capability by default:

- If admin is enabled, the framework has integrated the http/pprof functionality by default. Do not register again using admin.
- If admin is enabled on the PCG 123 platform, you can view the flame graph on the platform. For more information, please refer to the [tRPC-Go admin commands](https://iwiki.woa.com/pages/viewpage.action?pageId=99485663).
- If admin is enabled on the PCG 123 platform, you can view the flame graph on the platform. For more information, please refer to the [tRPC-Go admin commands](/admin/README.md).
2 changes: 1 addition & 1 deletion examples/features/filter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ functionality to the program without modifying the source code.

### Server-side

[`ServerFilter`](https://git.woa.com/trpc-go/trpc-go/blob/master/filter/filter.go#L42) is the type for server-side
[`ServerFilter`](https://github.com/trpc-group/trpc-go/blob/main/filter/filter.go#L29) is the type for server-side
filter.It is essentially a function type with signature:
`func(ctx context.Context, req interface{}, next ServerHandleFunc) (rsp interface{}, err error)`. An implementation of a
filter can usually be divided into the breakpoints.
Expand Down
4 changes: 2 additions & 2 deletions examples/features/http/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ The server log will be displayed as follows:
## Explanation
For more Information, please refer to:

- [Building a Generic HTTP Standard Service with tRPC-Go](https://iwiki.woa.com/pages/viewpage.action?pageId=490796278)
- [Building a Generic HTTP RPC Service with tRPC-Go](https://iwiki.woa.com/pages/viewpage.action?pageId=490796254)
- [Building a Generic HTTP Standard Service with tRPC-Go](/http/README.md#pan-http-standard-services)
- [Building a Generic HTTP RPC Service with tRPC-Go](/http/README.md#pan-http-rpc-service)