remove Output function from non-output modules

This commit is contained in:
Joel Wetzell
2026-03-22 20:03:50 -05:00
parent 279952f1ea
commit 5f056496ce
2 changed files with 0 additions and 9 deletions

View File

@@ -66,10 +66,6 @@ func (t *DbSqlite) Start(ctx context.Context) error {
return nil
}
func (t *DbSqlite) Output(ctx context.Context, payload any) error {
return nil
}
func (t *DbSqlite) Stop() {
if t.db != nil {
t.db.Close()

View File

@@ -79,11 +79,6 @@ func (rc *RedisClient) Start(ctx context.Context) error {
return nil
}
func (rc *RedisClient) Output(ctx context.Context, payload any) error {
return errors.ErrUnsupported
}
func (rc *RedisClient) Stop() {
rc.cancel()
}