mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
13 lines
154 B
JavaScript
13 lines
154 B
JavaScript
|
var uuid = require('node-uuid');
|
||
|
|
||
|
module.exports = {
|
||
|
posts: [],
|
||
|
|
||
|
settings: [],
|
||
|
|
||
|
roles: [],
|
||
|
|
||
|
permissions: [],
|
||
|
|
||
|
permissions_roles: []
|
||
|
};
|