Endpoint
import type { Endpoint } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.28.2/nats-base-client/internal_mod.ts";
A service Endpoint
type Endpoint = {
subject: string;
handler?: ServiceHandler;
metadata?: Record<string, string>;
queue?: string;
};§Type
§
{
[src]subject: string;
handler?: ServiceHandler;
metadata?: Record<string, string>;
queue?: string;
}