@node-ts/bus-core
Advanced tools
Comparing version 0.2.0 to 0.2.1
{ | ||
"name": "@node-ts/bus-core", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "A service bus for message-based, distributed node applications", | ||
@@ -48,3 +48,3 @@ "main": "./dist/index.js", | ||
], | ||
"gitHead": "db665a2aa4ee1e7ee5a64dd30f38163bee47881d" | ||
"gitHead": "d89967a0a88deeccd51784e18aadf879685540f9" | ||
} |
@@ -40,7 +40,7 @@ # @node-ts/bus-core | ||
import { injectable } from 'inversify' | ||
import { Handles, Handler } from '@node-ts/bus-core' | ||
import { HandlesMessage, Handler } from '@node-ts/bus-core' | ||
import { SendEmail } from 'my-corporation/commands' | ||
import { SERVICE_SYMBOLS, EmailService } from '../services' | ||
@Handles(SendEmail) | ||
@HandlesMessage(SendEmail) | ||
export class SendEmailHandler implements Handler<SendEmail> { | ||
@@ -47,0 +47,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
105073