UNPKG

@addapptables/microservice

Version:
8 lines (6 loc) 246 B
import { CommandHandler, ICommandHandler } from '../../'; import { TestCommand } from './command'; @CommandHandler(TestCommand) export class TestCommandHandler implements ICommandHandler<TestCommand> { handle(command: TestCommand): void { } }