You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
449 B
17 lines
449 B
/**
|
|
* NOTE: This file is simply for testing this connector and will not
|
|
* be used or packaged with the actual connector when published.
|
|
*/
|
|
var Arrow = require('arrow'),
|
|
server = new Arrow();
|
|
|
|
// TODO: Define a model that you can use when you run the connector locally for testing.
|
|
server.addModel(Arrow.Model.extend('tbray', {
|
|
fields: {
|
|
// TODO: Add fields to it.
|
|
title: {type: String}
|
|
},
|
|
connector: 'appc.facebook'
|
|
}));
|
|
|
|
server.start();
|
|
|