certimate/pkg/core/shared.go

10 lines
103 B
Go

package core
import (
"log/slog"
)
type WithLogger interface {
SetLogger(logger *slog.Logger)
}