Skip to content

Commit

Permalink
chore: Add null client (#111)
Browse files Browse the repository at this point in the history
Adding a null client to allow for table doc generation
  • Loading branch information
mnorbury authored Aug 31, 2023
1 parent 3f5f47f commit 3896982
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions lib/src/main/java/io/cloudquery/schema/NullClient.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package io.cloudquery.schema;

import io.cloudquery.messages.WriteMessage;

public class NullClient implements ClientMeta {
@Override
public String getId() {
return "null-client";
}

@Override
public void write(WriteMessage message) {
// No-op for null client
}
}

0 comments on commit 3896982

Please sign in to comment.