Skip to content

Commit

Permalink
add missing src/send-endpoint-default.mjs from template
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Dec 4, 2020
1 parent 38e2522 commit 7ab68cb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/send-endpoint-default.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { SendEndpoint } from "./send-endpoint.mjs";

/**
* Send Endpoint acting as a default endpoints
*/
export class SendEndpointDefault extends SendEndpoint {
/**
* We are a default endpoint
* @return {boolean} always true
*/
get isDefault() {
return true;
}
}

0 comments on commit 7ab68cb

Please sign in to comment.