mirror of
https://github.com/certimate-go/certimate.git
synced 2026-05-20 09:38:05 +08:00
10 lines
100 B
Go
10 lines
100 B
Go
package core
|
|
|
|
import (
|
|
"log/slog"
|
|
)
|
|
|
|
type WithLogger interface {
|
|
SetLogger(logger *slog.Logger)
|
|
}
|