Replaced legacy `*.orly` module imports with `next.orly.dev/pkg` paths across the codebase for consistency. Removed legacy `go.mod` files from sub-packages, consolidating dependency management. Added Dockerfiles and configurations for benchmarking environments.
12 lines
176 B
Go
12 lines
176 B
Go
package store
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"next.orly.dev/pkg/encoders/envelopes/okenvelope"
|
|
)
|
|
|
|
type Responder = http.ResponseWriter
|
|
type Req = *http.Request
|
|
type OK = okenvelope.T
|