summaryrefslogtreecommitdiff
path: root/plugins/http/tests/plugin1.go
blob: 7d1f32a1568a310c0810c2895f8de855f6e2f19f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package tests

import (
	config2 "github.com/spiral/roadrunner/v2/interfaces/config"
)

type Plugin1 struct {
	config config2.Configurer
}

func (p1 *Plugin1) Init(cfg config2.Configurer) error {
	p1.config = cfg
	return nil
}

func (p1 *Plugin1) Serve() chan error {
	errCh := make(chan error, 1)
	return errCh
}

func (p1 *Plugin1) Stop() error {
	return nil
}

func (p1 *Plugin1) Name() string {
	return "http_test.plugin1"
}