api/plugins/http_proxy/main.go
Peter Kurfer ca1ac7d89a
Move plugins to top level directory in repository
- update Makefiles and GoReleaser config
- update dependencies
2020-04-11 15:31:08 +02:00

23 lines
333 B
Go

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")
}