mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 12:59:30 +08:00
9 lines
133 B
Text
9 lines
133 B
Text
'use strict';
|
|
|
|
var util = require('./util');
|
|
|
|
module.exports = SchemaObject;
|
|
|
|
function SchemaObject(obj) {
|
|
util.copy(obj, this);
|
|
}
|