mirror of
https://github.com/haiwen/seahub.git
synced 2025-05-03 21:46:47 +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;
|
|
});
|