diff --git a/enats/enats_unsupported.go b/enats/enats_unsupported.go index 4d54daae..9e1a3d65 100644 --- a/enats/enats_unsupported.go +++ b/enats/enats_unsupported.go @@ -6,6 +6,7 @@ package enats import ( "context" "errors" + "log/slog" ) // NewConfig returns defaults for NATSServiceConfig @@ -21,6 +22,10 @@ func (Service) Start() error { } func (Service) Shutdown(ctx context.Context) error { return nil } -func NewService(c *Config) *Service { +func NewService(c *Config, l *slog.Logger) *Service { return &Service{} } + +func (s *Service) WaitJetStreamReady(v int) error { + return errors.New("not implemented") +}