mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-07 23:48:23 +00:00
12 lines
189 B
JavaScript
12 lines
189 B
JavaScript
|
define([
|
||
|
'underscore',
|
||
|
'backbone',
|
||
|
'common',
|
||
|
], function(_, Backbone, Common) {
|
||
|
'use strict';
|
||
|
|
||
|
var DeviceError = Backbone.Model.extend({});
|
||
|
|
||
|
return DeviceError;
|
||
|
});
|