angarum
Version:
A library which helps you focus on your delivery.
21 lines (17 loc) • 365 B
JavaScript
var Schema = require('./schema.js');
var _ = require('lodash');
module.exports = Schema.extend('Track_schema', {
init: function(obj) {
this._super(_.extend(this.get_config(), obj));
},
get_config: function() {
return {
"awb_number": "988110029735",
};
},
get_out_config: function() {
return {
"tracking_url": "",
};
},
});