Support syscall
This commit is contained in:
parent
05de0670ea
commit
d1ab6ed489
12 changed files with 247 additions and 8 deletions
3
pkg/plugins/fixtures/src/testpluginsafe/go.mod
Normal file
3
pkg/plugins/fixtures/src/testpluginsafe/go.mod
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
module testpluginsafe
|
||||
|
||||
go 1.23.0
|
||||
21
pkg/plugins/fixtures/src/testpluginsafe/testpluginsafe.go
Normal file
21
pkg/plugins/fixtures/src/testpluginsafe/testpluginsafe.go
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package testpluginsafe
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type Config struct {
|
||||
Message string
|
||||
}
|
||||
|
||||
func CreateConfig() *Config {
|
||||
return &Config{Message: "safe plugin"}
|
||||
}
|
||||
|
||||
func New(ctx context.Context, next http.Handler, config *Config, name string) (http.Handler, error) {
|
||||
return http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
|
||||
rw.Header().Set("X-Test-Plugin", "safe")
|
||||
next.ServeHTTP(rw, req)
|
||||
}), nil
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue