UNPKG
tennu-plugins
Version:
beta (4.0.0-b4)
latest (4.0.0-b4)
4.0.0-b4
4.0.0-b3
4.0.0-b2
4.0.0-b1
3.2.0
3.1.0
3.0.1
3.0.0
Tennu plugin subsystem
github.com/Tennu/tennu-plugins
Tennu/tennu-plugins
tennu-plugins
/
examples
/
tango.js
12 lines
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
// Plugin that implements the "dancer" role.
module
.
exports
= {
name
:
"tango"
,
role
:
"dancer"
,
init
:
function
(
) {
return
{
exports
: {
dance
:
function
(
) {
return
"does the Tango"
; } } }; } };