api/pkg/plugins/http_proxy/main.go

24 lines
333 B
Go
Raw Normal View History

2020-04-08 22:59:22 +00:00
package main
import (
"github.com/baez90/inetmock/internal/config"
"go.uber.org/zap"
"sync"
)
const (
name = "http_proxy"
)
type httpProxy struct {
logger *zap.Logger
}
func (h httpProxy) Run(config config.HandlerConfig) {
panic("implement me")
}
func (h httpProxy) Shutdown(wg *sync.WaitGroup) {
panic("implement me")
}