1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-27 23:48:48 +00:00
seahub/media/scripts/app/models/repo.js

11 lines
152 B
JavaScript
Raw Normal View History

define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var Repo = Backbone.Model.extend({});
return Repo;
});