Skip to content

Instantly share code, notes, and snippets.

@Nephos
Created November 23, 2017 13:40
Show Gist options
  • Save Nephos/66fc650397afb90cb9580bd1da736d9d to your computer and use it in GitHub Desktop.
Save Nephos/66fc650397afb90cb9580bd1da736d9d to your computer and use it in GitHub Desktop.
'use strict';
module.exports = function(Atom) {
Atom.list = function(cb) {
cb(null, {"w": 1, "n": 1, "name": "Hydrogene"});
}
Atom.remoteMethod(
'list', {
http: {
path: '/',
verb: 'get'
},
returns: {
arg: 'atom',
type: 'array'
}
}
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment