mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
8e4d828867
Signed-off-by: Alexei Dodon <adodon@cisco.com>
21 lines
355 B
Go
21 lines
355 B
Go
// +build minimal
|
|
|
|
package api
|
|
|
|
import (
|
|
"github.com/anuvu/zot/pkg/log"
|
|
)
|
|
|
|
type Controller struct {
|
|
Config *Config
|
|
Log log.Logger
|
|
}
|
|
|
|
func NewController(cfg *Config) *Controller {
|
|
logger := log.NewLogger(cfg.Exporter.Log.Level, cfg.Exporter.Log.Output)
|
|
return &Controller{Config: cfg, Log: logger}
|
|
}
|
|
|
|
func (c *Controller) Run() {
|
|
runExporter(c)
|
|
}
|