Skip to content

Commit 82b3671

Browse files
committed
move pkg package to pkg/fcgi
1 parent 17498ab commit 82b3671

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

pkg/client.go renamed to pkg/fcgi/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
import (
44
"errors"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
import (
44
"bytes"

pkg/const.go renamed to pkg/fcgi/const.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
// referer: http://www.mit.edu/~yandros/doc/specs/fcgi-spec.html
44

pkg/header.go renamed to pkg/fcgi/header.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
type Header struct {
44
Version byte
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
type NameValuePair struct {
44
NameLength uint16

pkg/pool.go renamed to pkg/fcgi/pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
import (
44
"errors"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
import (
44
"errors"

pkg/record.go renamed to pkg/fcgi/record.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
type UnknownTypeBody struct {
44
recordType byte

pkg/request.go renamed to pkg/fcgi/request.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package pkg
1+
package fcgi
22

33
import (
44
"bufio"

0 commit comments

Comments
 (0)