Starting in v0.0.3, I removed log/slog support.
The main reason was that you can't mock the logger you get back because it's not an interface. I also didn't like that I couldn't use Infof for certain occasions (e.g. Listening on %s).
It'd be nice to bring back compatibility for the times when you need to work with other libraries.
Thinking something like:
// Pass a fully-built logger
func Slog(log Log) *slog.Logger
// Alternatively, just pass a handler
func Slog(handler Handler) slog.Handler
Not sure which one's preferable at this time. We could use the same approach for the log package too.