mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
c5169e23c4
refs #9178
19 lines
289 B
JavaScript
19 lines
289 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
get url() {
|
|
return require('./url');
|
|
},
|
|
|
|
get tokens() {
|
|
return require('./tokens');
|
|
},
|
|
|
|
get string() {
|
|
return require('./string');
|
|
},
|
|
|
|
get identifier() {
|
|
return require('./identifier');
|
|
}
|
|
};
|