mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
7b761a8751
no issue Adds new canary api endpoint, currently replicating v2 endpoint but paving way for future updates to new version
5 lines
207 B
JavaScript
5 lines
207 B
JavaScript
module.exports = require('./v0.1');
|
|
module.exports['v0.1'] = require('./v0.1');
|
|
module.exports.v2 = require('./v2');
|
|
module.exports.canary = require('./canary');
|
|
module.exports.shared = require('./shared');
|