Files
next.orly.dev/pkg/interfaces/store/alias.go
mleku 110223fc4e Migrate internal module imports to unified package path.
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.
2025-09-12 16:12:31 +01:00

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