UNPKG
@addapptables/microservice
Version:
latest (2.0.1)
2.0.1
2.0.0
1.1.0
1.0.0
1.0.0-0
0.0.3-0
0.0.2-0
0.0.1
0.0.1-0
addapptables microservice
github.com/addapptables/miscellaneous
addapptables/miscellaneous
@addapptables/microservice
/
src
/
utils
/
_test
/
command-handler.ts
8 lines
(6 loc)
•
246 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
CommandHandler
,
ICommandHandler
}
from
'../../'
;
import
{
TestCommand
}
from
'./command'
;
@CommandHandler
(
TestCommand
)
export
class
TestCommandHandler
implements
ICommandHandler
<
TestCommand
> {
handle
(
command
:
TestCommand
):
void
{ } }