UNPKG
red-foot
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
1.0.0-alpha.1
Framework para frontends em JS
github.com/wolmir/red-foot
wolmir/red-foot
red-foot
/
src
/
comunicador.js
12 lines
(10 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/* jshint node:true */
"use strict"
;
var
gea =
require
(
'gea-js'
);
var
Classe
=
require
(
'pyoo.js'
);
var
Comunicador
=
Classe
(gea.
Correio
, {
__init__
:
function
(
self
) { gea.
Correio
.
__init__
(self, gea.
Fonte
()); } });
module
.
exports
=
Comunicador
;