mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-12 06:25:51 +03:00
7b761a8751
no issue Adds new canary api endpoint, currently replicating v2 endpoint but paving way for future updates to new version
6 lines
207 B
JavaScript
6 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');
|