Skip to content

Commit 0986ce1

Browse files
committed
chore: move project to github
1 parent 0f96621 commit 0986ce1

File tree

12 files changed

+18
-25
lines changed

12 files changed

+18
-25
lines changed

.gitlab-ci.yml

-10
This file was deleted.

README.md

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
# fastglue
2-
Fastglue is a "glue" wrapper over fasthttp and fasthttprouter.
32

4-
Currently, fastglue is successfully being used at [Zerodha](https://REDACTED) in production serving millions of requests per second.
3+
Fastglue is a "glue" wrapper over [fasthttp](https://github.com/valyala/fasthttp) and [fasthttprouter](https://github.com/fasthttp/router).
4+
5+
Currently, fastglue is successfully used at [Zerodha](https://zerodha.com) in production serving millions of requests per second.
56

67
## Install
8+
79
```bash
8-
go get -u REDACTED/fastglue
10+
go get -u github.com/zerodha/fastglue
911
```
1012

1113
## Usage
14+
1215
```go
13-
import "REDACTED/fastglue"
16+
import "github.com/zerodha/fastglue"
1417
```
1518

16-
1719
## Examples
20+
1821
- [HelloWorld Server](examples/helloworld)
1922
- [Middleware](examples/middleware)
2023
- [Before-after middleware](examples/before-after)

examples/before-after/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/valyala/fasthttp"
11-
"REDACTED/fastglue"
11+
"github.com/zerodha/fastglue"
1212
)
1313

1414
var (

examples/decode/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/valyala/fasthttp"
10-
"REDACTED/fastglue"
10+
"github.com/zerodha/fastglue"
1111
)
1212

1313
var (

examples/example.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"github.com/gorilla/schema"
88
"github.com/valyala/fasthttp"
9-
"REDACTED/fastglue"
9+
"github.com/zerodha/fastglue"
1010
)
1111

1212
// App is the global config "context" that'll be injected into every Request.

examples/graceful/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"time"
1010

1111
"github.com/valyala/fasthttp"
12-
"REDACTED/fastglue"
12+
"github.com/zerodha/fastglue"
1313
)
1414

1515
var (

examples/helloworld/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/valyala/fasthttp"
10-
"REDACTED/fastglue"
10+
"github.com/zerodha/fastglue"
1111
)
1212

1313
var (

examples/middleware/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"time"
1010

1111
"github.com/valyala/fasthttp"
12-
"REDACTED/fastglue"
12+
"github.com/zerodha/fastglue"
1313
)
1414

1515
var (

examples/path/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/valyala/fasthttp"
11-
"REDACTED/fastglue"
11+
"github.com/zerodha/fastglue"
1212
)
1313

1414
var (

examples/singleton/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/valyala/fasthttp"
11-
"REDACTED/fastglue"
11+
"github.com/zerodha/fastglue"
1212
)
1313

1414
var (

examples/static-file/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"time"
77

88
"github.com/valyala/fasthttp"
9-
"REDACTED/fastglue"
9+
"github.com/zerodha/fastglue"
1010
)
1111

1212
var (

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module REDACTED/fastglue
1+
module github.com/zerodha/fastglue
22

33
go 1.14
44

0 commit comments

Comments
 (0)