Skip to content

Commit

Permalink
move pkg package to pkg/fcgi
Browse files Browse the repository at this point in the history
  • Loading branch information
iwind committed May 28, 2021
1 parent 17498ab commit 82b3671
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pkg/client.go → pkg/fcgi/client.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion pkg/client_test.go → pkg/fcgi/client_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion pkg/const.go → pkg/fcgi/const.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

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

Expand Down
2 changes: 1 addition & 1 deletion pkg/header.go → pkg/fcgi/header.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

type Header struct {
Version byte
Expand Down
2 changes: 1 addition & 1 deletion pkg/name_value.go → pkg/fcgi/name_value.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

type NameValuePair struct {
NameLength uint16
Expand Down
2 changes: 1 addition & 1 deletion pkg/pool.go → pkg/fcgi/pool.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion pkg/pool_test.go → pkg/fcgi/pool_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

import (
"errors"
Expand Down
2 changes: 1 addition & 1 deletion pkg/record.go → pkg/fcgi/record.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

type UnknownTypeBody struct {
recordType byte
Expand Down
2 changes: 1 addition & 1 deletion pkg/request.go → pkg/fcgi/request.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package pkg
package fcgi

import (
"bufio"
Expand Down

0 comments on commit 82b3671

Please sign in to comment.