Skip to content

Commit

Permalink
chore: update package name
Browse files Browse the repository at this point in the history
  • Loading branch information
buraksezer committed Jun 10, 2021
1 parent b770252 commit 8ef7edf
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Pool [![Go Reference](https://pkg.go.dev/badge/github.com/buraksezer/pool.svg)](https://pkg.go.dev/github.com/buraksezer/pool) ![Tests](https://github.com/buraksezer/pool/actions/workflows/ci.yaml/badge.svg)
# ConnPool [![Go Reference](https://pkg.go.dev/badge/github.com/buraksezer/connpool.svg)](https://pkg.go.dev/github.com/buraksezer/connpool) ![Tests](https://github.com/buraksezer/connpool/actions/workflows/ci.yaml/badge.svg)


Pool is a thread safe connection pool for net.Conn interface. It can be used to
ConnPool is a thread safe connection pool for net.Conn interface. It can be used to
manage and reuse connections.


Expand All @@ -10,7 +10,7 @@ manage and reuse connections.
Install the package with:

```bash
go get github.com/buraksezer/pool
go get github.com/buraksezer/connpool
```

Please vendor the package with one of the releases: https://github.com/buraksezer/pool/releases.
Expand Down
2 changes: 1 addition & 1 deletion channel.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pool
package connpool

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion channel_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pool
package connpool

import (
"log"
Expand Down
2 changes: 1 addition & 1 deletion conn.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pool
package connpool

import (
"net"
Expand Down
2 changes: 1 addition & 1 deletion conn_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pool
package connpool

import (
"net"
Expand Down
2 changes: 1 addition & 1 deletion pool.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package pool implements a pool of net.Conn interfaces to manage and reuse them.
package pool
package connpool

import (
"errors"
Expand Down

0 comments on commit 8ef7edf

Please sign in to comment.