make method to get data out of a module

This commit is contained in:
Joel Wetzell
2026-03-04 12:35:15 -06:00
parent 0d4ec24a9b
commit 6a21cc2639
21 changed files with 163 additions and 0 deletions

View File

@@ -117,3 +117,7 @@ func (nc *NATSClient) Output(ctx context.Context, payload any) error {
func (nc *NATSClient) Stop() {
nc.cancel()
}
func (nc *NATSClient) Get(key string) (any, error) {
return nil, errors.New("nats.client does not support Get")
}