Skip to content

Commit b61fdc4

Browse files
committed
转移项目到antlabs账号下面
1 parent 1bf48ba commit b61fdc4

19 files changed

+24
-24
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
## 简介
22
tinyws是一个极简的websocket库, 总代码量控制在3k行以下.
33

4-
![Go](https://github.com/guonaihong/tinyws/workflows/Go/badge.svg)
5-
[![codecov](https://codecov.io/gh/guonaihong/tinyws/branch/main/graph/badge.svg)](https://codecov.io/gh/guonaihong/tinyws)
6-
[![Go Report Card](https://goreportcard.com/badge/github.com/guonaihong/tinyws)](https://goreportcard.com/report/github.com/guonaihong/tinyws)
4+
![Go](https://github.com/antlabs/tinyws/workflows/Go/badge.svg)
5+
[![codecov](https://codecov.io/gh/antlabs/tinyws/branch/main/graph/badge.svg)](https://codecov.io/gh/antlabs/tinyws)
6+
[![Go Report Card](https://goreportcard.com/badge/github.com/antlabs/tinyws)](https://goreportcard.com/report/github.com/antlabs/tinyws)
77

88
## 特性
99
* 3倍的简单
@@ -24,7 +24,7 @@ tinyws是一个极简的websocket库, 总代码量控制在3k行以下.
2424
* [配置服务自动回复ping消息](#配置服务自动回复ping消息)
2525
## Installation
2626
```console
27-
go get github.com/guonaihong/tinyws
27+
go get github.com/antlabs/tinyws
2828
```
2929

3030
## example
@@ -39,7 +39,7 @@ import (
3939
"os"
4040
"time"
4141

42-
"github.com/guonaihong/tinyws"
42+
"github.com/antlabs/tinyws"
4343
)
4444

4545
func main() {
@@ -78,7 +78,7 @@ package main
7878
import (
7979
"fmt"
8080

81-
"github.com/guonaihong/tinyws"
81+
"github.com/antlabs/tinyws"
8282
)
8383

8484
func main() {

autobahn/autobahn-testsuite.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"fmt"
77
"net/http"
88

9-
"github.com/guonaihong/tinyws"
9+
"github.com/antlabs/tinyws"
1010

1111
//"os"
1212

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

client_options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

conn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

conn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package tinyws
22

3-
// Copyright 2021 guonaihong. All rights reserved.
3+
// Copyright 2021-2022 antlabs. All rights reserved.
44
//
55
// Licensed under the Apache License, Version 2.0 (the "License");
66
// you may not use this file except in compliance with the License.

err.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

frame.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

json.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2021 guonaihong. All rights reserved.
1+
// Copyright 2021-2022 antlabs. All rights reserved.
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)