mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-12 10:52:47 +00:00
12 lines
157 B
JavaScript
12 lines
157 B
JavaScript
|
|
var app = new App();
|
|
|
|
app.use(HelloWorld, { "delimiter": "!" } );
|
|
|
|
app.init(function (err) {
|
|
if (err) {
|
|
console.log(err);
|
|
}
|
|
});
|
|
|
|
app.hello("world"); |